OFFSET
1,2
LINKS
Jonathan Bayless, Dominic Klyve, and Tomás Oliveira e Silva, New Bounds and Computations on Prime-Indexed Primes, INTEGERS, Electronic J. of Combinatorial Number Theory, Vol. 13, Paper A43, 2013.
FORMULA
a(n) = pi(pi(pi(10^n))) where pi(x) is the number of primes <= x.
EXAMPLE
a(3) = pi(pi(pi(10^3))) = 12, the third entry in the table.
MATHEMATICA
f[n_] := Nest[PrimePi, 10^n, 3]; Table[ f[n], {n, 13}] (* Robert G. Wilson v, Dec 20 2004 *)
PROG
(PARI) nestpi(n, m) = { local(x, y, z); for(x=1, n, z=10^x; for(y=1, m, z=primepi(z)); print1(z", ")) }
CROSSREFS
KEYWORD
nonn
AUTHOR
Cino Hilliard, Dec 15 2004
EXTENSIONS
More terms from Robert G. Wilson v, Dec 20 2004
a(16)-a(24) from Robert G. Wilson v, Mar 11 2015
STATUS
approved