login
A215970
Number of primes of the form 1 + b^65536 for 1 < b < 10^n.
0
0, 0, 0, 0, 1, 14, 28
OFFSET
1,6
COMMENTS
Primes 1 + b^65536 are a form of generalized Fermat primes.
It is conjectured that a(n) is asymptotic to 0.000170833*li(10^n)
EXAMPLE
a(5) = 1 because the generalized Fermat numbers F_16(b) where b<10^5 are prime only for b = 48594.
PROG
(PARI) a(n) = sum(b=1, 10^n/2-1, isprime((2*b)^65536+1))
KEYWORD
nonn
AUTHOR
Henryk Dabrowski, Aug 29 2012
STATUS
approved