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

A023290
Primes that remain prime through 3 iterations of function f(x) = 7x + 6.
3
149, 439, 1319, 2069, 2089, 2389, 2699, 2819, 4259, 4919, 5059, 5689, 6469, 7559, 8429, 8669, 9199, 9239, 9319, 9769, 10159, 10529, 14449, 14479, 17659, 18899, 19289, 23879, 25189, 29819, 33119, 33149, 34159, 34439, 35089, 36229, 38839, 39829, 40699
OFFSET
1,1
COMMENTS
Primes p such that 7*p+6, 49*p+48 and 343*p+342 are primes. - Vincenzo Librandi, Aug 04 2010
FORMULA
a(n) == 9 (mod 10). - John Cerkan, Sep 23 2016
PROG
(Magma) [n: n in [1..150000] | IsPrime(n) and IsPrime(7*n+6) and IsPrime(49*n+48) and IsPrime(343*n+342)]; // Vincenzo Librandi, Aug 04 2010
CROSSREFS
Subsequence of A023225, A023259, and A024900.
Sequence in context: A216312 A112859 A141980 * A142629 A078849 A078950
KEYWORD
nonn
STATUS
approved