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.

A327566 Partial sums of the infinitary divisors sum function: a(n) = Sum_{k=1..n} isigma(k), where isigma is A049417.

Original entry on oeis.org

1, 4, 8, 13, 19, 31, 39, 54, 64, 82, 94, 114, 128, 152, 176, 193, 211, 241, 261, 291, 323, 359, 383, 443, 469, 511, 551, 591, 621, 693, 725, 776, 824, 878, 926, 976, 1014, 1074, 1130, 1220, 1262, 1358, 1402, 1462, 1522, 1594, 1642, 1710, 1760, 1838, 1910, 1980
Offset: 1

Views

Author

Amiram Eldar, Sep 17 2019

Keywords

Comments

Differs from A307159 at n >= 16.

References

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

Crossrefs

Cf. A049417 (isigma), A327574.
Cf. A024916 (all divisors), A064609 (unitary), A307042 (exponential), A307159 (bi-unitary).

Programs

  • Mathematica
    f[p_, e_] := p^(2^(-1 + Position[Reverse @ IntegerDigits[e, 2], ?(# == 1 &)])); isigma[1] = 1; isigma[n] := Times @@ (Flatten @ (f @@@ FactorInteger[n]) + 1); Accumulate[Array[isigma, 52]]

Formula

a(n) ~ c * n^2, where c = 0.730718... (A327574).