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.

A327573 Partial sums of the number of infinitary divisors function: a(n) = Sum_{k=1..n} id(k), where id is A037445.

Original entry on oeis.org

1, 3, 5, 7, 9, 13, 15, 19, 21, 25, 27, 31, 33, 37, 41, 43, 45, 49, 51, 55, 59, 63, 65, 73, 75, 79, 83, 87, 89, 97, 99, 103, 107, 111, 115, 119, 121, 125, 129, 137, 139, 147, 149, 153, 157, 161, 163, 167, 169, 173, 177, 181, 183, 191, 195, 203, 207, 211, 213, 221
Offset: 1

Views

Author

Amiram Eldar, Sep 17 2019

Keywords

Comments

Differs from A306069 at n >= 16.

References

  • Steven R. Finch, Mathematical Constants II, Cambridge University Press, 2018, section 1.7.5, pp. 53-54.

Crossrefs

Cf. A006218 (all divisors), A064608 (unitary), A306069 (bi-unitary), A145353 (exponential).

Programs

  • Mathematica
    f[p_, e_] := 2^DigitCount[e, 2, 1]; id[1] = 1; id[n_] := Times @@ (f @@@ FactorInteger[n]); Accumulate[Array[id, 100]]

Formula

a(n) ~ 2 * c * n * log(n), where c = 0.366625... (A327576). [Corrected by Amiram Eldar, May 07 2021]