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!)
A114286 Sum of the cubes of the first n cubefree numbers. 1
0, 1, 9, 36, 100, 225, 441, 784, 1513, 2513, 3844, 5572, 7769, 10513, 13888, 18801, 24633, 31492, 39492, 48753, 59401, 71568, 87193, 104769, 126721, 151110, 178110, 207901, 243838, 283142, 326017, 372673, 423326, 478198, 537517, 606438, 680526 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Eric Weisstein's World of Mathematics, Cubefree.
FORMULA
a(n) = Sum_{k=1..n} A004709(k)^3.
a(n) ~ c * n^4, where c = zeta(3)^3/4 = 0.4342252653... . - Amiram Eldar, Feb 20 2024
EXAMPLE
1^3 + 2^3 + 3^3 + 4^3 + 5^3 + 6^3 + 7^3 + 9^3 + 10^3 + 11^3 = 3844 = 2^2 * 31^2.
MATHEMATICA
cubeFreeQ[n_] := Max[FactorInteger[n][[;; , 2]]] < 3; Join[{0}, Accumulate[Select[Range[50], cubeFreeQ]^3]] (* Amiram Eldar, Feb 20 2024 *)
CROSSREFS
Sequence in context: A231686 A231688 A000537 * A098928 A139469 A103158
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Nov 20 2005
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 June 27 02:41 EDT 2024. Contains 373723 sequences. (Running on oeis4.)