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!)
A237813 Primes p such that 2*p+1 and 2*p+15 are also prime. 5
2, 11, 23, 29, 41, 83, 89, 113, 131, 179, 191, 281, 293, 359, 419, 431, 491, 509, 593, 641, 653, 683, 719, 1019, 1049, 1103, 1229, 1289, 1409, 1451, 1511, 1583, 1601, 1811, 1889, 1931, 2003, 2039, 2069, 2129, 2141, 2273, 2393, 2399, 2459, 2543, 2549, 2699 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
11 is in the sequence because 11, 2*11+1 = 23 and 2*11+15 = 37 are all prime.
MATHEMATICA
Select[Prime[Range[5000]], PrimeQ[2 # + 1] && PrimeQ[2 # + 15] &] (* Vincenzo Librandi, Feb 15 2014 *)
PROG
(PARI) s=[]; forprime(p=2, 10000, if(isprime(2*p+1) && isprime(2*p+15), s=concat(s, p))); s
(Magma) [p: p in PrimesUpTo(4000) | IsPrime(2*p+1) and IsPrime(2*p+15)]; // Vincenzo Librandi, Feb 15 2014
CROSSREFS
Sequence in context: A066725 A087340 A246622 * A106927 A158189 A218255
KEYWORD
nonn
AUTHOR
Colin Barker, Feb 13 2014
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 May 4 00:44 EDT 2024. Contains 372225 sequences. (Running on oeis4.)