login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A182121 Primes p such that the sum of both three and five consecutive primes starting with p is prime. 3
5, 7, 11, 19, 29, 31, 53, 67, 79, 109, 149, 157, 163, 211, 229, 311, 349, 379, 401, 409, 449, 467, 653, 757, 809, 839, 857, 863, 883, 983, 997, 1033, 1087, 1103, 1187, 1193, 1289, 1301, 1303, 1409, 1481, 1523, 1553, 1637, 1663, 1669, 1709, 1951, 1973 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
5 is in the sequence because 5 + 7 + 11 = 23 is prime and 5 + 7 + 11 + 13 + 17 = 53 is also prime.
MATHEMATICA
cpQ[n_]:=Module[{ppi=PrimePi[n], cnsc}, cnsc=Prime[Range[ppi, ppi+4]]; And@@ PrimeQ[ {Total[cnsc], Total[Take[cnsc, 3]]}]]; Select[Prime[Range[300]], cpQ] (* Harvey P. Dale, Mar 28 2013 *)
Select[Partition[Prime[Range[500]], 5, 1], AllTrue[{Total[Take[#, 3]], Total[#]}, PrimeQ]&][[;; , 1]] (* Harvey P. Dale, Feb 11 2024 *)
PROG
(PARI) {a=2; b=3; c=5; d=7; e=11; for(n=1, 300, s=a+b+c+d+e;
if(isprime(s)&&isprime(a+b+c), print1(a", ")); a=b; b=c; c=d; d=e; e=nextprime(e+2))}
CROSSREFS
Intersection of A073681 and A152468.
Sequence in context: A040127 A341215 A136086 * A072825 A045440 A023235
KEYWORD
nonn
AUTHOR
Zak Seidov, Dec 17 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 19 01:31 EDT 2024. Contains 374388 sequences. (Running on oeis4.)