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

A045460
Primes congruent to {0, 4, 6} mod 7.
2
7, 11, 13, 41, 53, 67, 83, 97, 109, 137, 139, 151, 167, 179, 181, 193, 223, 251, 263, 277, 293, 307, 347, 349, 389, 419, 431, 433, 461, 487, 503, 557, 571, 587, 599, 601, 613, 641, 643, 683, 727, 739, 769, 797
OFFSET
1,1
LINKS
MATHEMATICA
Select[Prime[Range[200]], MemberQ[{0, 4, 6}, Mod[#, 7]]&] (* Vincenzo Librandi, Aug 13 2012 *)
Select[Flatten[#+{0, 4, 6}&/@Range[7, 1000, 7]], PrimeQ] (* Harvey P. Dale, Dec 14 2019 *)
PROG
(Magma) [ p: p in PrimesUpTo(1000) | p mod 7 in {0, 4, 6} ]; // Vincenzo Librandi, Aug 13 2012
CROSSREFS
Cf. A045313 (complement).
Sequence in context: A322172 A330699 A084457 * A334092 A054299 A116442
KEYWORD
nonn,easy
STATUS
approved