[go: up one dir, main page]

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!)
A344721 a(n) = Sum_{k=1..n} (-1)^(k+1) * floor(n/k)^3. 4
1, 7, 27, 56, 118, 196, 324, 448, 685, 901, 1233, 1549, 2019, 2445, 3157, 3664, 4482, 5262, 6290, 7128, 8536, 9598, 11118, 12392, 14255, 15743, 18087, 19711, 22149, 24417, 27209, 29251, 32771, 35327, 39087, 42048, 46046, 49244, 54180, 57512, 62434, 66838, 72258, 76246 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{k=1,..n} Sum_{d|k} (-1)^(k/d + 1) * (d^3 - (d - 1)^3).
G.f.: (1/(1 - x)) * Sum_{k>=1} (k^3 - (k - 1)^3) * x^k/(1 + x^k).
a(n) ~ 3*zeta(3)*n^3/4. - Vaclav Kotesovec, May 28 2021
MATHEMATICA
a[n_] := Sum[(-1)^(k + 1) * Quotient[n, k]^3, {k, 1, n}]; Array[a, 50] (* Amiram Eldar, May 27 2021 *)
Accumulate[Table[-3*DivisorSigma[0, n] + 2*DivisorSigma[0, 2*n] + 6*DivisorSigma[1, n] - 3*DivisorSigma[1, 2*n] - 9/2 * DivisorSigma[2, n] + 3/2 * DivisorSigma[2, 2*n], {n, 1, 50}]] (* Vaclav Kotesovec, May 28 2021 *)
PROG
(PARI) a(n) = sum(k=1, n, (-1)^(k+1)*(n\k)^3);
(PARI) a(n) = sum(k=1, n, sumdiv(k, d, (-1)^(k/d+1)*(d^3-(d-1)^3)));
(PARI) my(N=66, x='x+O('x^N)); Vec(sum(k=1, N, (k^3-(k-1)^3)*x^k/(1+x^k))/(1-x))
CROSSREFS
Column k=3 of A344726.
Cf. A318742.
Sequence in context: A215446 A098948 A015873 * A309335 A175367 A022271
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 27 2021
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 August 30 07:09 EDT 2024. Contains 375532 sequences. (Running on oeis4.)