A056168 Duplicate of A054041.
1, 2, 3, 4, 6, 8, 10, 12, 15, 17, 20, 23, 25, 28, 32, 35, 38, 41, 45, 49, 52, 56, 60, 64, 68
Offset: 0
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
The j-th prime appears at the position of its square, at n = prime(j)^2.
Table[f = Transpose[FactorInteger[LCM @@ Range[n]]]; pos = Position[f[[2]], ?(# > 1 &)]; If[pos == {}, 1, f[[1, pos[[-1]]]][[1]]], {n, 100}] (* _T. D. Noe, Oct 30 2013 *)
a(7)=12 since Sum_{i=1..12} 1/i^(1/3) = 7.106248... and Sum_{i=1..11} 1/i^(1/3) = 6.669458... .
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)+", ");} }
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 *)
Comments