login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A356042 a(n) = Sum_{k=1..n} sigma_2(k) * floor(n/k). 2
1, 7, 18, 45, 72, 138, 189, 301, 403, 565, 688, 985, 1156, 1462, 1759, 2212, 2503, 3115, 3478, 4207, 4768, 5506, 6037, 7269, 7947, 8973, 9895, 11272, 12115, 13897, 14860, 16678, 18031, 19777, 21154, 23908, 25279, 27457, 29338, 32362, 34045, 37411, 39262, 42583 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{k=1..n} Sum_{d|k} d^2 * tau(k/d).
G.f.: (1/(1-x)) * Sum_{k>=1} sigma_2(k) * x^k/(1 - x^k).
a(n) ~ zeta(3)^2 * n^3 / 3. - Vaclav Kotesovec, Aug 07 2022
MATHEMATICA
Table[Sum[DivisorSigma[2, k]*Floor[n/k], {k, 1, n}], {n, 1, 50}] (* Vaclav Kotesovec, Aug 07 2022 *)
PROG
(PARI) a(n) = sum(k=1, n, sigma(k, 2)*(n\k));
(PARI) a(n) = sum(k=1, n, sumdiv(k, d, d^2*numdiv(k/d)));
(PARI) my(N=50, x='x+O('x^N)); Vec(sum(k=1, N, sigma(k, 2)*x^k/(1-x^k))/(1-x))
CROSSREFS
Partial sums of A007433.
Column k=2 of A356045.
Cf. A000005 (tau).
Sequence in context: A023166 A002764 A124053 * A324900 A343545 A324944
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jul 24 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 20 02:01 EDT 2024. Contains 371798 sequences. (Running on oeis4.)