A163521 a(n) = floor(Sum_{k = 2..10^n} k/log(k)).
30, 1255, 78698, 5762750, 455059956, 37607986470, 3204942375900, 279238346962895, 24739954333817884
Offset: 1
Keywords
Examples
For n = 9, floor(Sum_{x=2..10^n} x/log(x)) = 24739954333817884, the 9th term.
Programs
-
Mathematica
Table[Floor[Sum[j/Log[j], {j, 2, 10^n}]], {n, 1, 9}] (* G. C. Greubel, Jul 27 2017 *)
-
PARI
nthsum(n) = for(j=1,n,print1(floor(sum(x=2,10^j,x/log(x)))","));
Extensions
Definition clarified by R. J. Mathar and Omar E. Pol, Aug 01 2009
Comments