login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A236481
Primes p with p + 2, prime(p) + 2 and prime(prime(p)) + 2 all prime.
5
3, 1949, 4217, 8219, 9929, 22091, 23537, 28097, 38711, 41609, 50051, 60899, 68111, 72227, 74159, 79631, 115151, 122399, 127679, 150959, 155537, 266687, 267611, 270551, 271499, 284741, 306347, 428297, 433661, 444287
OFFSET
1,1
COMMENTS
Conjecture: For any positive integer m, there are infinitely many chains p(1) < p(2) < ... < p(m) of m primes with p(k) + 2 prime for all k = 1,...,m such that p(k + 1) = prime(p(k)) for every 0 < k < m.
LINKS
Zhi-Wei Sun, A new kind of prime chains, a message to Number Theory List, Jan. 20, 2014.
EXAMPLE
a(1) = 3 since 3, 3 + 2 = 5, prime(3) + 2 = 7 and prime(prime(3)) + 2 = prime(5) + 2 = 13 are all prime, but 2 + 2 = 4 is composite.
MATHEMATICA
p[n_]:=p[n]=PrimeQ[n+2]&&PrimeQ[Prime[n]+2]&&PrimeQ[Prime[Prime[n]]+2]
n=0; Do[If[p[Prime[m]], n=n+1; Print[n, " ", Prime[m]]], {m, 1, 10^6}]
KEYWORD
nonn
AUTHOR
Zhi-Wei Sun, Jan 26 2014
STATUS
approved