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”).
%I #14 Sep 08 2022 08:44:56
%S 3,13,19,23,29,43,53,59,73,79,83,89,103,109,113,139,149,163,173,179,
%T 193,199,223,229,233,239,263,269,283,293,313,349,353,359,373,379,383,
%U 389,409,419,433,439,443,449,463
%N Primes congruent to {3, 4} mod 5.
%H Vincenzo Librandi, <a href="/A045435/b045435.txt">Table of n, a(n) for n = 1..1000</a>
%t Select[Prime[Range[100]],MemberQ[{3,4},Mod[#,5]]&] (* _Harvey P. Dale_, Mar 04 2011 *)
%o (Magma)[ p: p in PrimesUpTo(600) | p mod 5 in {3,4} ]; // _Vincenzo Librandi_, Aug 13 2012
%Y Cf. A000040.
%K nonn,easy
%O 1,1
%A _N. J. A. Sloane_