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

A045407
Primes congruent to {0, 1, 3} mod 5.
1
3, 5, 11, 13, 23, 31, 41, 43, 53, 61, 71, 73, 83, 101, 103, 113, 131, 151, 163, 173, 181, 191, 193, 211, 223, 233, 241, 251, 263, 271, 281, 283, 293, 311, 313, 331, 353, 373, 383, 401, 421, 431, 433, 443, 461, 463
OFFSET
1,1
LINKS
MATHEMATICA
Select[Prime[Range[100]], MemberQ[{0, 1, 3}, Mod[#, 5]]&] (* Harvey P. Dale, May 19 2012 *)
PROG
(Magma) [ p: p in PrimesUpTo(600) | p mod 5 in {0, 1, 3} ]; // Vincenzo Librandi, Aug 12 2012
CROSSREFS
Cf. A000040.
Sequence in context: A266723 A129096 A079448 * A317309 A243897 A153075
KEYWORD
nonn,easy
STATUS
approved