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

A045444
Primes congruent to {0, 5, 6} mod 7.
1
5, 7, 13, 19, 41, 47, 61, 83, 89, 97, 103, 131, 139, 167, 173, 181, 223, 229, 251, 257, 271, 293, 307, 313, 349, 383, 397, 419, 433, 439, 461, 467, 503, 509, 523, 587, 593, 601, 607, 643, 677, 691, 719, 727, 733
OFFSET
1,1
LINKS
MATHEMATICA
Select[Prime[Range[200]], MemberQ[{0, 5, 6}, Mod[#, 7]]&] (* Vincenzo Librandi, Aug 13 2012 *)
PROG
(Magma) [ p: p in PrimesUpTo(1000) | p mod 7 in {0, 5, 6} ]; // Vincenzo Librandi, Aug 13 2012
CROSSREFS
Cf. A000040.
Sequence in context: A063910 A288632 A189557 * A129782 A080829 A224789
KEYWORD
nonn,easy
STATUS
approved