OFFSET
1,1
COMMENTS
Conjecture: For any integer n > 4 not equal to 76, we have 2*n = p + q for some terms p and q from the sequence.
This is stronger than Goldbach's conjecture for even numbers.
LINKS
Zhi-Wei Sun, Table of n, a(n) for n = 1..10000
Zhi-Wei Sun, Conjectures involving primes and quadratic forms, preprint, arXiv:1211.1588.
EXAMPLE
a(1) = 5 since 3*5 - 10 = 5 is prime.
MATHEMATICA
PQ[p_]:=PQ[p]=p>3&&PrimeQ[3p-10]
m=0
Do[If[PQ[Prime[n]], m=m+1; Print[m, " ", Prime[n]]], {n, 1, 80}]
Select[Prime[Range[100]], PrimeQ[3#-10]&] (* Harvey P. Dale, Jun 28 2015 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Zhi-Wei Sun, Oct 12 2013
STATUS
approved