Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #10 Sep 08 2022 08:44:56
%S 5,7,11,19,29,43,47,53,61,67,71,89,103,109,113,127,131,137,151,173,
%T 179,193,197,211,229,239,257,263,271,277,281,313,337,347,379,383,389,
%U 397,421,431,439,449,463,467,487
%N Primes congruent to {0, 1, 4, 5} mod 7.
%H Vincenzo Librandi, <a href="/A045440/b045440.txt">Table of n, a(n) for n = 1..1000</a>
%t Select[Prime[Range[200]],MemberQ[{0,1,4,5},Mod[#,7]]&] (* _Vincenzo Librandi_, Aug 13 2012 *)
%o (Magma) [ p: p in PrimesUpTo(700) | p mod 7 in {0, 1, 4, 5} ]; // _Vincenzo Librandi_, Aug 13 2012
%Y Cf. A000040.
%K nonn,easy
%O 1,1
%A _N. J. A. Sloane_