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!)
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 (list; graph; refs; listen; history; text; internal format)
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
Sequence in context: A300528 A157422 A061644 * A339098 A210107 A266604
KEYWORD
sign
AUTHOR
Henry Bottomley, Mar 21 2000
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 April 18 20:26 EDT 2024. Contains 371781 sequences. (Running on oeis4.)