A302434 Number of primes of the form b^2 + 2 for b <= 10^n.
4, 12, 69, 447, 3423, 27869, 236985, 2054022, 18127693, 162237123
Offset: 1
Examples
a(1) = 4 because there are 4 primes of the form b^2+2 for b <= 10: 2, 3, 11 and 83.
Crossrefs
Programs
-
PARI
{a(n) = sum(k=0, 10^n, isprime(k^2+2))}
Extensions
a(10) from Jacques Tramu, Sep 13 2018
Comments