OFFSET
0,2
REFERENCES
Steven R. Finch, Mathematical Constants II, Encyclopedia of Mathematics and Its Applications, Cambridge University Press, Cambridge, 2018, p. 166.
LINKS
Amiram Eldar, Table of n, a(n) for n = 0..10000
FORMULA
a(n) ~ (5*G/Pi^2) * n^3, where G is Catalan's constant (A006752).
EXAMPLE
a(0) = sigma(0^2 + 1) = sigma(1) = 1.
a(1) = sigma(0^2 + 1) + sigma(1^2 + 1) = sigma(1) + sigma(2) = 1 + 3 = 4.
MATHEMATICA
Accumulate @ Table[DivisorSigma[1, k^2 + 1], {k, 0, 100}]
PROG
(PARI) a(n) = sum(k=0, n, sigma(k^2+1)); \\ Michel Marcus, Mar 10 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Mar 09 2020
STATUS
approved