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

A215274
Primes congruent to {0, 1, 2, 5} mod 19.
1
2, 5, 19, 43, 59, 97, 157, 173, 191, 211, 229, 233, 271, 347, 401, 419, 439, 457, 461, 499, 571, 613, 647, 727, 743, 761, 857, 971, 1009, 1031, 1069, 1103, 1123, 1217, 1237, 1259, 1297, 1373, 1427, 1483, 1487, 1559, 1579, 1597, 1601, 1693, 1753, 1787, 1867
OFFSET
1,1
LINKS
MATHEMATICA
Select[Prime[Range[600]], MemberQ[{0, 1, 2, 5}, Mod[#, 19]]&]
Select[Flatten[#+{0, 1, 2, 5}&/@(19*Range[0, 100])], PrimeQ] (* Harvey P. Dale, Mar 01 2019 *)
PROG
(Magma) [ p: p in PrimesUpTo(2000) | p mod 19 in {0, 1, 2, 5} ];
CROSSREFS
Sequence in context: A138250 A140761 A077323 * A293457 A304782 A184435
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Aug 07 2012
STATUS
approved