A358621 Smallest b > 1 such that b^(2^n)+1 is a Sophie Germain prime.
2, 2, 160, 140, 2800, 8660, 62150, 4085530, 922820, 4629490, 5802710, 1146175000, 90894850
Offset: 0
Links
- PrimeGrid and "Stream", GFN-1x Small Primes search, mentions a(12).
Programs
-
PARI
a(n)=n<2&&return(2);forstep(b=10,+oo,10,ispseudoprime(b^(2^n)+1)&&ispseudoprime(2*b^(2^n)+3)&&return(b))
Comments