login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A215049
Number of primes of the form 1 + b^8 for 1 < b < 10^n.
13
2, 2, 40, 335, 2498, 20886, 174368, 1507722, 13300713
OFFSET
1,1
COMMENTS
Primes 1 + b^8 are a form of generalized Fermat primes. It is conjectured that a(n) is asymptotic to 0.261599*li(10^n).
FORMULA
a(n) = A214454(8*n) - 1.
EXAMPLE
a(1) = 2 because the only Fermat primes F_3(b) where b<10^1 are the primes: 257, 65537.
MATHEMATICA
Table[Length[Select[Range[2, 10^n-1]^8 + 1, PrimeQ]], {n, 5}] (* T. D. Noe, Aug 01 2012 *)
PROG
(PARI) a(n) = sum(b=1, 10^n/2-1, isprime((2*b)^8+1))
CROSSREFS
Cf. A214454.
Sequence in context: A222668 A210246 A116567 * A087541 A153434 A152016
KEYWORD
nonn
AUTHOR
Henryk Dabrowski, Aug 01 2012
STATUS
approved