login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A356535
a(n) = Sum_{k=1..n} sigma_2(k)^2.
3
1, 26, 126, 567, 1243, 3743, 6243, 13468, 21749, 38649, 53533, 97633, 126533, 189033, 256633, 372914, 457014, 664039, 795083, 1093199, 1343199, 1715299, 1996199, 2718699, 3142500, 3865000, 4537400, 5639900, 6348864, 8038864, 8964308, 10827533, 12315933, 14418433
OFFSET
1,2
COMMENTS
Partial sums of A356533.
LINKS
FORMULA
a(n) ~ 189 * zeta(3)^2 * zeta(5) * n^5 / Pi^6.
MATHEMATICA
Table[Sum[DivisorSigma[2, k]^2, {k, 1, n}], {n, 1, 40}]
PROG
(PARI) a(n) = sum(k=1, n, sigma(k, 2)^2); \\ Michel Marcus, Aug 11 2022
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Aug 11 2022
STATUS
approved