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

A113169
Primes p such that 13*p + 2 is also prime.
1
3, 5, 17, 29, 47, 53, 59, 113, 137, 173, 227, 239, 257, 269, 347, 353, 389, 419, 449, 467, 479, 509, 557, 563, 599, 677, 719, 743, 827, 839, 953, 977, 983, 1013, 1019, 1103, 1109, 1163, 1193, 1217, 1223, 1259, 1277, 1289, 1307, 1373, 1427, 1487
OFFSET
1,1
COMMENTS
Except for 3, all terms == 5 (mod 6). - Robert Israel, Sep 06 2018
LINKS
EXAMPLE
If p=173 then 13*p + 2 = 2251 (prime).
MAPLE
select(t -> isprime(t) and isprime(13*t+2), [3, seq(i, i=5..10000, 6)]); # Robert Israel, Sep 06 2018
PROG
(Magma) [p: p in PrimesUpTo(3000)| IsPrime(13*p+2)] // Vincenzo Librandi, Jan 29 2011
(PARI) forprime(p=3, 1e4, if(isprime(13*p+2), print1(p, ", "))); \\ Altug Alkan, Sep 07 2018
CROSSREFS
Sequence in context: A163586 A074931 A023226 * A350856 A174913 A079496
KEYWORD
nonn
AUTHOR
Parthasarathy Nambi, Jan 06 2006
STATUS
approved