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

A023314
Primes that remain prime through 4 iterations of function f(x) = 5x + 4.
2
263, 1217, 2141, 4673, 5333, 6983, 10973, 11423, 26669, 27143, 28697, 74843, 85061, 101063, 102647, 114113, 121001, 133349, 141623, 150497, 154823, 199877, 200183, 202409, 203039, 207953, 259697, 259781, 275813, 280487, 294167, 305477, 322727
OFFSET
1,1
COMMENTS
Primes p such that 5*p+4, 25*p+24, 125*p+124 and 625*p+624 are also primes. - Vincenzo Librandi, Aug 04 2010
FORMULA
a(n) == 11 or 41 (mod 42). - John Cerkan, Oct 07 2016
PROG
(Magma) [n: n in [1..1000000] | IsPrime(n) and IsPrime(5*n+4) and IsPrime(25*n+24) and IsPrime(125*n+124) and IsPrime(625*n+624)] // Vincenzo Librandi, Aug 04 2010
CROSSREFS
Subsequence of A023218, A023253, A023284, and A024897.
Sequence in context: A128654 A236245 A343192 * A054802 A369877 A239685
KEYWORD
nonn
STATUS
approved