login
A053621
Nearest integer to n/(log(n)-1).
1
-1, -7, 30, 10, 8, 8, 7, 7, 8, 8, 8, 8, 8, 9, 9, 9, 9, 10, 10, 10, 10, 11, 11, 11, 11, 12, 12, 12, 12, 12, 13, 13, 13, 13, 14, 14, 14, 14, 15, 15, 15, 15, 16, 16, 16, 16, 16, 17, 17, 17, 17, 18, 18, 18, 18, 19, 19, 19, 19, 19, 20, 20, 20, 20, 20, 21, 21, 21, 21, 22, 22, 22
OFFSET
1,2
COMMENTS
n/(log(n)-1) is a better approximation than n/log(n) to pi(n) the number of primes <= n, though worse than the logarithmic integral or the Riemann prime number formula.
LINKS
Pierre Dusart, Estimates of Some Functions Over Primes without R.H., arXiv:1002.0442 [math.NT], 2010.
MATHEMATICA
Table[Round[n/(Log[n]-1)], {n, 1, 80}] (* G. C. Greubel, May 17 2019 *)
PROG
(Haskell)
a053621 = round . (\x -> x / (log x - 1)) . fromIntegral
-- Reinhard Zumkeller, Apr 30 2014
(PARI) vector(80, n, round(n/(log(n)-1))) \\ G. C. Greubel, May 17 2019
(Magma) [Round(n/(Log(n)-1)): n in [1..80]]; // G. C. Greubel, May 17 2019
(Sage) [round(n/(log(n)-1)) for n in (1..80)] # G. C. Greubel, May 17 2019
CROSSREFS
KEYWORD
sign
AUTHOR
Henry Bottomley, Mar 21 2000
STATUS
approved