OFFSET
0,3
LINKS
David Baugh, Table of n, a(n) for n = 0..19 (terms n = 18..19 found using Kim Walisch's primecount program).
R. Mestrovic, An elementary proof of an estimate for a number of primes less than the product of the first n primes, arXiv:1211.4571 [math.NT], 2012.
Tomás Oliveira e Silva, Tables of values of pi(x) and of pi2(x)
FORMULA
MAPLE
seq(numtheory:-pi(mul(ithprime(i), i=1..n)), n=0..10); # Robert Israel, Aug 25 2014
MATHEMATICA
a=1; Table[a=a*Prime[n]; PrimePi[a], {n, 12}]
Join[{0}, PrimePi/@FoldList[Times, Prime[Range[12]]]] (* Harvey P. Dale, Jan 28 2019 *)
PROG
(PARI) t=1; forprime(p=2, 66, print1(primepi(t), ", "); t*=p); \\ Joerg Arndt, Aug 25 2014
(Sage) [prime_pi(sloane.A002110(n)) for n in range (14)] # Giuseppe Coppoletta, Mar 02 2015
CROSSREFS
KEYWORD
nonn,hard
AUTHOR
James D. Ausfahl, gandalf(AT)hrn.office.ssi.net
EXTENSIONS
More terms from David W. Wilson
a(10)-a(13) from Paul Zimmermann
a(14)-a(15) from Donovan Johnson, Mar 01 2010
a(16)-a(17) from Henri Lifchitz, Aug 25 2014
a(18)-a(19) from David Baugh, Sep 29 2020
STATUS
approved