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”).

A159043
Primes of the form prime(n)+prime(n+3)+1.
3
19, 31, 37, 47, 61, 71, 103, 109, 131, 163, 193, 211, 241, 251, 281, 313, 331, 349, 373, 379, 421, 457, 467, 521, 541, 571, 607, 643, 691, 727, 739, 751, 823, 853, 883, 941, 991, 1021, 1051, 1069, 1117, 1129, 1201, 1213, 1259, 1279, 1303, 1327, 1429, 1459
OFFSET
1,1
COMMENTS
19=5+13+1, 31=11+19+1, 37=13+23+1, 47=17+29+1, 61=23+37+1, ...
LINKS
MATHEMATICA
lst={}; Do[p1=Prime[n]; p4=Prime[n+3]; p=p1+p4+1; If[PrimeQ[p], AppendTo[lst, p]], {n, 6!}]; lst
Select[#[[1]]+#[[4]]+1&/@Partition[Prime[Range[250]], 4, 1], PrimeQ] (* Harvey P. Dale, Aug 08 2020 *)
CROSSREFS
Sequence in context: A040066 A339465 A279192 * A040088 A178251 A335418
KEYWORD
nonn
AUTHOR
STATUS
approved