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

A090609
Primes of the form 6*p - 1 such that p and 6*p - 5 are primes.
5
11, 17, 41, 101, 113, 281, 317, 353, 401, 617, 677, 761, 941, 1433, 1613, 1697, 1877, 2273, 2297, 2381, 2693, 2801, 3461, 3677, 3701, 3881, 4937, 4973, 5441, 5573, 5861, 6581, 6737, 7673, 8237, 8681, 8933, 9137, 10181, 10337, 10733, 11261, 11597, 12101
OFFSET
1,1
FORMULA
a(n) = 6*A089144(n) - 1.
PROG
(PARI) lista(nn) = forprime(p=2, nn, if(isprime(6*p-1)&&isprime(6*p-5), print1(6*p-1, ", "))); \\ Jinyuan Wang, Aug 04 2021
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Ray Chandler, Dec 06 2003
EXTENSIONS
Name clarified and offset changed to 1 by Jinyuan Wang, Aug 03 2021
STATUS
approved