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

A107020
Primes p such that 2p+1, 4p+3, 6p+5 are all primes.
5
2, 11, 41, 1901, 2459, 5081, 5849, 6131, 6449, 8969, 9221, 10691, 12119, 13229, 14009, 14321, 14669, 15161, 18461, 19709, 20411, 21179, 22271, 23099, 24551, 25601, 30389, 37991, 39419, 41381, 43691, 44699, 52289, 55631, 56081, 58979
OFFSET
1,1
LINKS
MATHEMATICA
Select[Range[60000], AllTrue[{#, 2#+1, 4#+3, 6#+5}, PrimeQ]&] (* James C. McMahon, Feb 09 2024 *)
PROG
(Magma) [p: p in PrimesUpTo(1000000)| IsPrime(2*p+1) and IsPrime(4*p+3) and IsPrime(6*p+5) ]; // Vincenzo Librandi, Nov 13 2010
CROSSREFS
Cf. A107024: p, 2p+1, 4p+3, 6p+5, 8p+7, 10p+9, 12p+11, 14p+13 all prime; A107023: p, 2p+1, 4p+3, 6p+5, 8p+7, 10p+9, 12p+11 all prime; A107022: p, 2p+1, 4p+3, 6p+5, 8p+7, 10p+9 all prime; A107020: p, 2p+1, 4p+3, 6p+5, 8p+7 all prime; A007700: p, 2p+1, 4p+3 all prime; A005384: p, 2p+1 prime (p = Sophie Germain primes).
Sequence in context: A258937 A347110 A225907 * A160945 A079808 A089658
KEYWORD
nonn
AUTHOR
Zak Seidov, May 09 2005
EXTENSIONS
More terms from Vincenzo Librandi, Apr 01 2010
STATUS
approved