OFFSET
1,1
COMMENTS
Also: Number m such that 3 * m + 6 is the sum of three consecutive primes. - David A. Corneth, Jan 12 2018
LINKS
Colin Barker, Table of n, a(n) for n = 1..1000
EXAMPLE
52 is in the sequence because 52 + 53 + 54 = 159 = 47 + 53 + 59.
MATHEMATICA
Block[{nn = 430, s}, s = Total /@ Partition[Prime@ Range[nn], 3, 1]; Select[Partition[Range[Prime@ nn], 3, 1], MemberQ[s, Total@ #] &]][[All, 1]] (* Michael De Vlieger, Jan 11 2018 *)
(#-3)/3&/@Select[Total/@Partition[Prime[Range[500]], 3, 1], Mod[#, 3]==0&] (* Harvey P. Dale, Sep 13 2018 *)
PROG
(PARI) L=List(); forprime(p=2, 4000, q=nextprime(p+1); r=nextprime(q+1); t=p+q+r; if((t-3)%3==0, listput(L, (t-3)/3))); Vec(L)
CROSSREFS
KEYWORD
nonn
AUTHOR
Colin Barker, Jan 11 2018
EXTENSIONS
New name by David A. Corneth, Jan 12 2018
STATUS
approved