A165235 Least prime p such that the n+1 numbers p + 2^k - 2, k=1..n+1, are all prime.
3, 5, 5, 17, 17, 1607, 1607, 19427, 2397347207, 153535525937
Offset: 1
Examples
a(5)=17 because {17,19,23,31,47,79} are 6 primes whose differences are powers of 2, and 17 is the least such prime.
Links
- Eric Weisstein's World of Mathematics, k-Tuple Conjecture
Crossrefs
Cf. A000918 (2^n - 2)
Programs
-
Mathematica
p=3; Table[While[ !And@@PrimeQ[p+2^Range[2,n+1]-2], p=NextPrime[p]]; p, {n,8}]
Comments