A302435 Number of primes of the form b^2+3 for b <= 10^n.
5, 18, 110, 712, 5427, 44096, 373019, 3228862, 28494961
Offset: 1
Examples
a(1) = 5 because there are 5 primes of the form b^2+3 for b <= 10: 3, 7, 19, 67 and 103.
Crossrefs
Programs
-
PARI
{a(n) = sum(k=0, 10^n, isprime(k^2+3))}