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

A224789
Primes p such that both p + nextprime(p) + 1 and p*nextprime(p) + 2 are primes.
1
5, 7, 13, 19, 67, 229, 269, 307, 313, 401, 439, 613, 643, 863, 1051, 1693, 1783, 1999, 2143, 2239, 2309, 2423, 2549, 2753, 2819, 3037, 3079, 3089, 3361, 3373, 3389, 3677, 3863, 3877, 4139, 4259, 4519, 4663, 4909, 4933, 5323, 5527, 5581, 5849, 6359, 6577
OFFSET
1,1
COMMENTS
Intersection of A051507 and A177017.
LINKS
EXAMPLE
5 is a member since 5 + 7 + 1 = 13 and 5 * 7 + 2 = 37 are both primes.
MATHEMATICA
Select[Prime[Range[900]], PrimeQ[# + NextPrime[#] + 1] && PrimeQ[#*NextPrime[#] + 2] &]
npQ[n_]:=Module[{np=NextPrime[n]}, AllTrue[{n+np+1, n*np+2}, PrimeQ]]; Select[ Prime[ Range[900]], npQ] (* The program uses the AllTrue function from Mathematica version 10 *) (* Harvey P. Dale, Jul 04 2017 *)
CROSSREFS
Sequence in context: A045444 A129782 A080829 * A078884 A314328 A314329
KEYWORD
nonn
AUTHOR
Jayanta Basu, Apr 17 2013
STATUS
approved