A194430 Integers m such that 6m+1 and 6m+101 are two consecutive primes.
66122, 139708, 218911, 274680, 275951, 390998, 464062, 542493, 599248, 674526, 726567, 761851, 777592, 797312, 868518, 899766, 921381, 953983, 1004547, 1040377, 1071537, 1141977, 1209861, 1259061, 1277086, 1376176, 1391747, 1406978, 1467815
Offset: 1
Keywords
Links
- Zak Seidov, Table of n, a(n) for n = 1..3892
Crossrefs
Cf. A050434.
Programs
-
PARI
{for(n=1,10^6,if(isprime(p=6*n+1)&&nextprime(p+2)==p+100,print1(n", ")))}
Formula
a(n) = (A050434(n)-1)/6.