OFFSET
1,5
COMMENTS
Conjecture: a(n) < sqrt(6*n)*log(3*n) for all n > 0.
We have verified this for n up to 5*10^5. Note that a(273) = 271 > sqrt(6*273)*log(2*273).
According to the conjecture in A218829, a(n) should be positive for all n > 2.
LINKS
Zhi-Wei Sun, Table of n, a(n) for n = 1..10000
Z.-W. Sun, Problems on combinatorial properties of primes, arXiv:1402.6641, 2014
EXAMPLE
a(5) = 2 since prime(prime(2)) + 2 = prime(3) + 2 = 7 and prime(5-2) + 2 = 7 are both prime, but prime(5-1) + 2 = 7 + 2 = 9 is composite.
MATHEMATICA
pq[k_, m_]:=PrimeQ[Prime[k]+2]&&PrimeQ[Prime[Prime[m]]+2]
Do[Do[If[pq[n-m, m], Print[n, " ", m]; Goto[aa]], {m, 1, n-1}];
Print[n, " ", 0]; Label[aa]; Continue, {n, 1, 70}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Zhi-Wei Sun, Feb 05 2014
STATUS
approved