login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A352077
a(n) = floor( Sum_{k=1..n} k^(1/3) ).
1
0, 1, 2, 3, 5, 6, 8, 10, 12, 14, 16, 19, 21, 23, 26, 28, 31, 33, 36, 39, 41, 44, 47, 50, 53, 56, 58, 61, 65, 68, 71, 74, 77, 80, 83, 87, 90, 93, 97, 100, 104, 107, 110, 114, 117, 121, 125, 128, 132, 136, 139, 143, 147, 150, 154, 158, 162, 166, 170, 173, 177, 181, 185, 189, 193, 197
OFFSET
0,3
LINKS
Snehal Shekatkar, On the sum of the r'th roots of first n natural numbers, arXiv:1204.0877 [math.NT], 2012-2013.
EXAMPLE
a(6) = 8 because 1^(1/3) + 2^(1/3) + 3^(1/3) + 4^(1/3) + 5^(1/3) + 6^(1/3) = 8.81667... .
MATHEMATICA
a[n_] := Floor[ HarmonicNumber[n, -1/3]]; Array[ a, 66, 0]
PROG
(PARI) a(n) = floor(sum(k=0, n, k^(1/3))); \\ Michel Marcus, Mar 02 2022
CROSSREFS
Sequence in context: A366968 A080276 A120836 * A213857 A011864 A045919
KEYWORD
easy,nonn
AUTHOR
Robert G. Wilson v, Mar 02 2022
STATUS
approved