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

A132239
Primes congruent to {17, 19} mod 30.
1
17, 19, 47, 79, 107, 109, 137, 139, 167, 197, 199, 227, 229, 257, 317, 347, 349, 379, 409, 439, 467, 499, 557, 587, 617, 619, 647, 677, 709, 739, 769, 797, 827, 829, 857, 859, 887, 919, 947, 977, 1009, 1039, 1069, 1097, 1129, 1187
OFFSET
1,1
MATHEMATICA
Select[Prime[Range[1000]], MemberQ[{17, 19}, Mod[#, 30]]&] (* Vincenzo Librandi, Aug 14 2012 *)
PROG
(Magma) [ p: p in PrimesUpTo(1300) | p mod 30 in {17, 19} ]; // Vincenzo Librandi, Aug 14 2012
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Omar E. Pol, Aug 15 2007
STATUS
approved