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.

A307042 Partial sums of the exponential divisors sum function: Sum_{k=1..n} esigma(k), where esigma is A051377.

Original entry on oeis.org

1, 3, 6, 12, 17, 23, 30, 40, 52, 62, 73, 91, 104, 118, 133, 155, 172, 196, 215, 245, 266, 288, 311, 341, 371, 397, 427, 469, 498, 528, 559, 593, 626, 660, 695, 767, 804, 842, 881, 931, 972, 1014, 1057, 1123, 1183, 1229, 1276, 1342, 1398, 1458, 1509, 1587, 1640
Offset: 1

Views

Author

Amiram Eldar, Mar 21 2019

Keywords

Crossrefs

Programs

  • Mathematica
    esigma[n_] := Times @@ (Sum[ First[#]^d, {d, Divisors[Last[#]]}] & ) /@ FactorInteger[n]; Accumulate[Array[esigma, 60]] (* after Jean-François Alcover at A051377 *)

Formula

a(n) ~ B * n^2, where B = 0.5682854937... (A275480).