login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A128910
Similar to A057835 except using K * X / log(X), K=1.022.
0
0, 3, 20, 119, 715, 4523, 30509, 213343, 1530983, 11203550, 83064263, 620498643, 4643259527, 34592032908, 254639722327, 1832740718223, 12680919388801, 81678704122892, 452951221016511, 1574800035301944, 8395299939524712, 282240813012897282, 4457697545906326118, 58106920364272792945, 693274802905577732102, 7864635685729658131835
OFFSET
1,2
COMMENTS
This is an improvement over the classic X / log(X) approximation in the range many people work with.
pi(x), R(x), and li(x) are all asymptotically x/log x + x/log^2 x + O(x/log^3 x), so this approximation is good around exp(1/.022) ≈ 5 * 10^19. Asymptotically the best value for K would be 1. - Charles R Greathouse IV, Aug 18 2022
FORMULA
a(n) = abs(round(1.022*10^n/log(10^n)) - pi(10^n)). - Charles R Greathouse IV, Mar 22 2015
a(n) ~ 10^n/kn with k = 104.6629.... - Charles R Greathouse IV, Mar 22 2015
EXAMPLE
a(10)=11203550 via abs (455,052,511 - 443,848,961).
MATHEMATICA
Table[ PrimePi[10^n] - Round[N[1.022*10^n/Log[10^n]]], {n, 23}] (* and absolute value thereof (orig entries 21-23 <0); courtesy of Robert G. Wilson v *)
PROG
(PARI) a(n) = abs(round(1.022*10^n/log(10^n)) - primepi(10^n)) \\ Charles R Greathouse IV, Mar 22 2015
CROSSREFS
Sequence in context: A275796 A164535 A001652 * A037788 A037669 A228066
KEYWORD
nonn
AUTHOR
Bill McEachen, Apr 23 2007
STATUS
approved