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

A045422
Primes congruent to {0, 1, 3, 6} mod 7.
1
3, 7, 13, 17, 29, 31, 41, 43, 59, 71, 73, 83, 97, 101, 113, 127, 139, 157, 167, 181, 197, 199, 211, 223, 227, 239, 241, 251, 269, 281, 283, 293, 307, 311, 337, 349, 353, 367, 379, 409, 419, 421, 433, 449, 461, 463
OFFSET
1,1
LINKS
MATHEMATICA
Select[Prime[Range[200]], MemberQ[{0, 1, 3, 6}, Mod[#, 7]]&] (* Vincenzo Librandi, Aug 13 2012 *)
PROG
(Magma) [ p: p in PrimesUpTo(600) | p mod 7 in {0, 1, 3, 6} ]; // Vincenzo Librandi, Aug 13 2012
CROSSREFS
Cf. A000040.
Sequence in context: A097957 A071774 A019403 * A191071 A180543 A218833
KEYWORD
nonn,easy
STATUS
approved