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

A045421
Primes congruent to {0, 3, 4} mod 7.
1
3, 7, 11, 17, 31, 53, 59, 67, 73, 101, 109, 137, 151, 157, 179, 193, 199, 227, 241, 263, 269, 277, 283, 311, 347, 353, 367, 389, 409, 431, 479, 487, 521, 557, 563, 571, 577, 599, 613, 619, 641, 647, 661, 683, 739
OFFSET
1,1
LINKS
MATHEMATICA
Select[Prime[Range[200]], MemberQ[{0, 3, 4}, Mod[#, 7]]&] (* Vincenzo Librandi, Aug 13 2012 *)
PROG
(Magma) [ p: p in PrimesUpTo(1000) | p mod 7 in {0, 3, 4} ]; // Vincenzo Librandi, Aug 13 2012
CROSSREFS
Cf. A000040.
Sequence in context: A045420 A190898 A142248 * A072456 A138659 A020590
KEYWORD
nonn,easy
STATUS
approved