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

A045466
Primes congruent to {1, 4, 6} mod 7.
1
11, 13, 29, 41, 43, 53, 67, 71, 83, 97, 109, 113, 127, 137, 139, 151, 167, 179, 181, 193, 197, 211, 223, 239, 251, 263, 277, 281, 293, 307, 337, 347, 349, 379, 389, 419, 421, 431, 433, 449, 461, 463, 487, 491
OFFSET
1,1
LINKS
MATHEMATICA
Select[Prime[Range[200]], MemberQ[{1, 4, 6}, Mod[#, 7]]&] (* Vincenzo Librandi, Aug 13 2012 *)
PROG
(Magma) [ p: p in PrimesUpTo(700) | p mod 7 in {1, 4, 6} ]; // Vincenzo Librandi, Aug 13 2012
CROSSREFS
Cf. A000040.
Sequence in context: A232880 A117314 A115560 * A158759 A107645 A106014
KEYWORD
nonn,easy
STATUS
approved