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

A023346
Primes that remain prime through 5 iterations of function f(x) = 7x + 6.
1
4259, 174079, 253369, 275699, 448859, 527159, 539639, 649969, 1101509, 1218559, 1230629, 1319729, 1426889, 1780939, 1929899, 1947109, 1960919, 2082469, 2087419, 2262409, 2479619, 2499169, 2797999, 2808359, 2809439, 2813339, 3089059, 3363749
OFFSET
1,1
COMMENTS
Primes p such that 7*p+6, 49*p+48, 343*p+342, 2401*p+2400 and 16807*p+16806 are also primes. - Vincenzo Librandi, Aug 05 2010
FORMULA
a(n) == 9 (mod 10). - John Cerkan, Oct 24 2016
PROG
(Magma) [n: n in [1..10000000] | IsPrime(n) and IsPrime(7*n+6) and IsPrime(49*n+48) and IsPrime(343*n+342) and IsPrime(2401*n+2400) and IsPrime(16807*n+16806)] // Vincenzo Librandi, Aug 05 2010
CROSSREFS
Subsequence of A023225, A023259, A023290, A023318, and A024900.
Sequence in context: A224725 A252030 A371569 * A231195 A342565 A362877
KEYWORD
nonn
STATUS
approved