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

A045337
Primes congruent to {1, 2, 3, 4} (mod 7).
6
2, 3, 11, 17, 23, 29, 31, 37, 43, 53, 59, 67, 71, 73, 79, 101, 107, 109, 113, 127, 137, 149, 151, 157, 163, 179, 191, 193, 197, 199, 211, 227, 233, 239, 241, 263, 269, 277, 281, 283, 311, 317, 331, 337, 347, 353
OFFSET
1,1
LINKS
MATHEMATICA
Select[Prime[Range[600]], MemberQ[{1, 2, 3, 4}, Mod[#, 7]]&] (* Vincenzo Librandi, Aug 08 2012 *)
PROG
(Magma) [p: p in PrimesUpTo(400) | p mod 7 in [1, 2, 3, 4]]; // Vincenzo Librandi, Aug 08 2012
CROSSREFS
Sequence in context: A192612 A014092 A100962 * A098700 A025584 A242256
KEYWORD
nonn,easy
STATUS
approved