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

A045440
Primes congruent to {0, 1, 4, 5} mod 7.
1
5, 7, 11, 19, 29, 43, 47, 53, 61, 67, 71, 89, 103, 109, 113, 127, 131, 137, 151, 173, 179, 193, 197, 211, 229, 239, 257, 263, 271, 277, 281, 313, 337, 347, 379, 383, 389, 397, 421, 431, 439, 449, 463, 467, 487
OFFSET
1,1
LINKS
MATHEMATICA
Select[Prime[Range[200]], MemberQ[{0, 1, 4, 5}, Mod[#, 7]]&] (* Vincenzo Librandi, Aug 13 2012 *)
PROG
(Magma) [ p: p in PrimesUpTo(700) | p mod 7 in {0, 1, 4, 5} ]; // Vincenzo Librandi, Aug 13 2012
CROSSREFS
Cf. A000040.
Sequence in context: A136086 A182121 A072825 * A023235 A118918 A019376
KEYWORD
nonn,easy
STATUS
approved