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

A051647
Primes p such that 210*p + 1 is also prime.
2
2, 3, 5, 7, 11, 13, 17, 23, 29, 47, 53, 59, 67, 73, 83, 89, 101, 137, 139, 157, 163, 179, 181, 191, 193, 223, 229, 251, 271, 277, 281, 313, 317, 347, 349, 353, 359, 401, 419, 421, 431, 433, 449, 457, 463, 479, 523, 577, 599, 601, 631, 653, 701, 709, 719, 727
OFFSET
1,1
COMMENTS
Analogous to A005384, Sophie Germain primes.
LINKS
EXAMPLE
A002110(4)*p + 1 = 210*p + 1 and p are both primes.
11 is in the sequence because 210*11 + 1 = 2311 is also prime.
MATHEMATICA
Select[Prime[Range[200]], PrimeQ[210#+1]&] (* Harvey P. Dale, Apr 25 2011 *)
PROG
(Magma) [p: p in PrimesUpTo(900) | IsPrime(210*p+1)]; // Vincenzo Librandi, Apr 11 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved