A214956 Number of primes of the form x^32 + 1 less than 10^n.
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 6, 6, 7, 7, 7, 8, 8, 8, 8, 8
Offset: 1
Keywords
Examples
a(55) = 2 because the only primes of the form x^32 + 1 < 10^55 are the primes: 2, 185302018885184100000000000000000000000000000001.
Links
- Chai Wah Wu, Table of n, a(n) for n = 1..304 (n = 1..128 from Henryk Dabrowski)
Programs
-
PARI
a(n) = sum(k=1, (10^n-1)^(1/32), isprime(k^32+1))
Comments