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.

A359072 Denominators of the partial sums of the reciprocals of the maximal exponent in prime factorization of the positive integers (A051903).

Original entry on oeis.org

1, 1, 2, 2, 2, 2, 6, 3, 3, 3, 6, 6, 6, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 4, 4, 4, 4, 4, 20, 20, 20, 20, 20, 20, 20, 20, 60, 60, 60, 60, 60, 60, 60, 60, 30, 15, 30, 30, 15, 15, 15, 15, 5, 5, 5, 5, 10, 10, 10, 5, 30, 30, 30, 30, 15, 15, 15, 15, 5, 5
Offset: 2

Views

Author

Amiram Eldar, Dec 15 2022

Keywords

Crossrefs

Cf. A051903, A129132, A359071 (numerators).

Programs

  • Mathematica
    f[n_] := Max[FactorInteger[n][[;; , 2]]]; f[1] = 0; Denominator[Accumulate[Table[1/f[n], {n, 2, 100}]]]

Formula

a(n) = denominator(Sum_{k=2..n} 1/A051903(k)).