cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A340819 Denominators of a sequence of fractions converging to A340820, the asymptotic density of numbers whose excess of prime divisors (A046660) is even (A162644).

Original entry on oeis.org

6, 9, 54, 4, 264, 308, 7854, 374, 1564, 11339, 362848, 127541072, 1307295988, 2614591976, 42742894912, 1132686715168, 4608863185856, 71437379380768, 162734350229389504, 46216555465146619136, 427503138052606227008, 270181983249247135469056, 64347502466822129824768
Offset: 1

Views

Author

Amiram Eldar, Jan 22 2021

Keywords

Comments

See A340818 for details.

Crossrefs

Cf. A046660, A162644, A340818 (numerators), A340820.

Programs

  • Mathematica
    d[p_] := 1/(p*(p + 1)); delta[n_] := delta[n] = d[Prime[n]]; f[0] = 1; f[n_] := f[n] = f[n - 1] * (1 - delta[n]) + (1 - f[n - 1]) * delta[n]; Denominator @ Array[f, 30]