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!)
A120721 Partial sums of A079645. 3
1, 3, 6, 10, 15, 21, 28, 36, 46, 58, 72, 88, 106, 126, 148, 172, 198, 225, 255, 288, 324, 363, 405, 450, 498, 549, 603, 660, 720, 783, 847, 915, 987, 1063, 1143, 1227, 1315, 1407, 1503, 1603, 1707, 1815, 1927, 2043, 2163, 2287, 2412, 2542, 2677, 2817, 2962, 3112, 3267 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{j=1..n} A079645(j).
MATHEMATICA
Accumulate[Select[Range[300], Divisible[#, Floor[CubeRoot[#]]]&]] (* Harvey P. Dale, Jun 19 2023 *)
PROG
(Magma)
A079645:=[n: n in [1..500] | n mod Floor(n^(1/3)) eq 0 ];
[(&+[A079645[k]: k in [1..n]]): n in [1..100]]; // G. C. Greubel, Jul 20 2023
(SageMath)
A079645=[j for j in (1..500) if j%(floor(j^(1/3)))==0]
def A120721(n): return sum(A079645[k] for k in range(n+1))
[A120721(n) for n in range(101)] # G. C. Greubel, Jul 20 2023
CROSSREFS
Sequence in context: A069792 A194153 A025737 * A122056 A358038 A025706
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Oct 29 2006
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 24 03:06 EDT 2024. Contains 371918 sequences. (Running on oeis4.)