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

A045462
Primes congruent to {0, 4} mod 7.
1
7, 11, 53, 67, 109, 137, 151, 179, 193, 263, 277, 347, 389, 431, 487, 557, 571, 599, 613, 641, 683, 739, 809, 823, 907, 977, 991, 1019, 1033, 1061, 1103, 1117, 1187, 1201, 1229, 1327, 1439, 1453, 1481, 1523
OFFSET
1,1
LINKS
FORMULA
{7} UNION A045471. - R. J. Mathar, Oct 18 2008
MATHEMATICA
Select[Prime[Range[200]], MemberQ[{0, 4}, Mod[#, 7]]&] (* Vincenzo Librandi, Aug 13 2012 *)
PROG
(Magma)[ p: p in PrimesUpTo(2000) | p mod 7 in {0, 4} ]; // Vincenzo Librandi, Aug 13 2012
CROSSREFS
Cf. A000040.
Sequence in context: A018508 A038277 A375309 * A263231 A077411 A085016
KEYWORD
nonn,easy
STATUS
approved