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

A045394
Primes congruent to {0, 3, 4, 5, 6} mod 7.
1
3, 5, 7, 11, 13, 17, 19, 31, 41, 47, 53, 59, 61, 67, 73, 83, 89, 97, 101, 103, 109, 131, 137, 139, 151, 157, 167, 173, 179, 181, 193, 199, 223, 227, 229, 241, 251, 257, 263, 269, 271, 277, 283, 293, 307, 311, 313
OFFSET
1,1
LINKS
MATHEMATICA
Select[Prime[Range[100]], MemberQ[{0, 3, 4, 5, 6}, Mod[#, 7]]&] (* Harvey P. Dale, Apr 24 2011 *)
PROG
(Magma) [ p: p in PrimesUpTo(740) | p mod 7 in {0, 3, 4, 5, 6} ]; // Vincenzo Librandi, Apr 24 2011
CROSSREFS
Sequence in context: A163422 A155055 A030096 * A264030 A070739 A061244
KEYWORD
nonn
STATUS
approved