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!)
A309126 a(n) = n + 2^3 * floor(n/2^3) + 3^3 * floor(n/3^3) + 4^3 * floor(n/4^3) + ... 4
1, 2, 3, 4, 5, 6, 7, 16, 17, 18, 19, 20, 21, 22, 23, 32, 33, 34, 35, 36, 37, 38, 39, 48, 49, 50, 78, 79, 80, 81, 82, 91, 92, 93, 94, 95, 96, 97, 98, 107, 108, 109, 110, 111, 112, 113, 114, 123, 124, 125, 126, 127, 128, 156, 157, 166, 167, 168, 169, 170, 171, 172, 173, 246, 247, 248, 249, 250, 251, 252 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Partial sums of A113061.
LINKS
FORMULA
G.f.: (1/(1 - x)) * Sum_{k>=1} k^3 * x^(k^3)/(1 - x^(k^3)).
a(n) ~ zeta(4/3)*n^(4/3)/4 - n/2. - Vaclav Kotesovec, Aug 30 2021
MATHEMATICA
Table[Sum[k^3 Floor[n/k^3], {k, 1, n}], {n, 1, 70}]
nmax = 70; CoefficientList[Series[1/(1 - x) Sum[k^3 x^(k^3)/(1 - x^(k^3)), {k, 1, Floor[nmax^(1/3)] + 1}], {x, 0, nmax}], x] // Rest
PROG
(PARI) a(n) = sum(k=1, n, k^3*(n\k^3)); \\ Seiichi Manyama, Aug 30 2021
CROSSREFS
Sequence in context: A308334 A161673 A368533 * A371289 A004836 A039030
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 13 2019
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 31 14:40 EDT 2024. Contains 375567 sequences. (Running on oeis4.)