login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A101226 Numbers formed by the fourth nesting of pi(10^n). 1
0, 2, 5, 14, 44, 165, 725, 3607, 19624, 115127, 716177, 4675144, 31743253 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

FORMULA

a(n) = pi(pi(pi(pi(10^n)))) where pi(x) is the number of primes LE x.

EXAMPLE

a(3) = pi(pi(pi(pi(10^3)))) = 5, the third entry in the table.

MATHEMATICA

f[n_] := Nest[PrimePi, 10^n, 4]; Table[ f[n], {n, 13}] (from Robert G. Wilson v Dec 21 2004)

PROG

(PARI) nestpi(n, m) = { local(x, y, z); for(x=1, n, z=10^x; for(y=1, m, z=pi(z)); print1(z", ")) } pi(n) = \pi(n) Prime count function { local(c, x); c=0; forprime(x=1, n, c++); return(c) }

CROSSREFS

Cf. A006880, A096359, A101225.

Sequence in context: A095148 A060996 A134378 * A030126 A149887 A149888

Adjacent sequences:  A101223 A101224 A101225 * A101227 A101228 A101229

KEYWORD

nonn

AUTHOR

Cino Hilliard (hillcino368(AT)gmail.com), Dec 15 2004

EXTENSIONS

a(10)-a(14) from Robert G. Wilson v (rgwv(AT)rgwv.com), Dec 21 2004

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 15:39 EST 2012. Contains 205635 sequences.