The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A231405 Least integer j such that sum_{i=1..j} 1/i^(1/3) >= n. 0
1, 1, 3, 4, 6, 8, 10, 12, 15, 17, 20, 23, 25, 28, 32, 35, 38, 41, 45, 49, 52, 56, 60, 64, 68, 72, 76, 81, 85, 89, 94, 98, 103, 108, 113, 117, 122, 127, 132, 138, 143, 148, 153, 159, 164, 170, 175, 181, 187, 192, 198, 204, 210, 216, 222, 228, 234, 240, 247, 253 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
EXAMPLE
a(7)=12 since sum_{i=1..12} 1/i^(1/3) = 7.106248.... and sum_{1=1..11} 1/i^(1/3) = 6.669458....
MATHEMATICA
s = 0; i = 0; Table[i++; While[s = s + 1/(i^(1/3)); s < n, i++]; i, {n, 100}] (* T. D. Noe, Nov 09 2013 *)
Module[{nn=300, c}, c=Accumulate[1/Surd[Range[nn], 3]]; Table[Position[ c, _?(#>=n&), 1, 1], {n, 0, 60}]]//Flatten (* Harvey P. Dale, Aug 14 2021 *)
PROG
(JavaScript)
s=0; n=1;
for (i=1; i<30; i++) {
s+=1/Math.pow(i, 1/3);
if (s>=n) {n++; document.write(Math.floor(i)+", "); }
}
CROSSREFS
Cf. A004080, A054040, A054041 (condition >n).
Cf. A067086.
Sequence in context: A351863 A025201 A071259 * A092137 A206580 A291899
KEYWORD
nonn
AUTHOR
Carmine Suriano, Nov 08 2013
EXTENSIONS
Added a(0). - Jon Perry, Nov 10 2013
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 May 19 14:45 EDT 2024. Contains 372698 sequences. (Running on oeis4.)