A236464 Primes p with prime(p) + 2 and prime(p) + 6 both prime.
3, 5, 7, 13, 43, 89, 313, 613, 643, 743, 1171, 1279, 1627, 1823, 1867, 1999, 2311, 2393, 2683, 2753, 2789, 3571, 4441, 4561, 5039, 5231, 5647, 5953, 6067, 6317, 6899, 8039, 8087, 8753, 8923, 9337, 9787, 9931, 10259, 10667
Offset: 1
Keywords
Examples
a(1) = 3 since 3, prime(3) + 2 = 7 and prime(3) + 6 = 11 are all prime, but prime(2) + 6 = 9 is composite.
Links
- Zhi-Wei Sun, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
p[n_]:=p[n]=PrimeQ[Prime[n]+2]&&PrimeQ[Prime[n]+6] n=0;Do[If[p[Prime[m]],n=n+1;Print[n," ",Prime[m]]],{m,1,10000}]
Comments