OFFSET
1,1
COMMENTS
This integral is an approximation to the sum of x/log(x) for x=2 to 10^n and closely approximates Pi(n^2) for x = 2 to n.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 1..200
MATHEMATICA
Table[Floor[NIntegrate[x/Log[x], {x, 2, 10^n}]], {n, 1, 10}] (* G. C. Greubel, Jul 28 2017 *)
PROG
(PARI) g(n)=intnum(x=2, 10^n, x/log(x)); for(x=1, 20, print1(floor(g(x))", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Cino Hilliard, Jul 30 2009
EXTENSIONS
Edited (but not checked) by N. J. A. Sloane, Aug 01 2009
Offset and upper limit in the definition corrected by R. J. Mathar, Aug 02 2009
STATUS
approved