OFFSET
0,4
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..86
FORMULA
a(n) = floor(sqrt(A007053(n))).
EXAMPLE
a(4)=2 because pi(2^4)=6 and the greatest integer less than or equal to sqrt(6) is 2.
MATHEMATICA
Table[ Floor[Sqrt[PrimePi[2^n]]], {n, 0, 25}] (* G. C. Greubel, Jan 13 2017 *)
PROG
(PARI) a(n) = sqrtint(primepi(2^n)); \\ Michel Marcus, Sep 05 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Andrew V. Sutherland, Dec 01 2007
STATUS
approved