This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A045413 #10 Sep 08 2022 08:44:56 %S A045413 3,5,13,19,23,29,43,53,59,73,79,83,89,103,109,113,139,149,163,173,179, %T A045413 193,199,223,229,233,239,263,269,283,293,313,349,353,359,373,379,383, %U A045413 389,409,419,433,439,443,449,463 %N A045413 Primes congruent to {0, 3, 4} mod 5. %H A045413 Vincenzo Librandi, <a href="/A045413/b045413.txt">Table of n, a(n) for n = 1..1000</a> %t A045413 Select[Prime[Range[200]],MemberQ[{0,3,4},Mod[#,5]]&] (* _Vincenzo Librandi_, Aug 12 2012 *) %o A045413 (Magma) [ p: p in PrimesUpTo(600) | p mod 5 in {0,3,4} ]; // _Vincenzo Librandi_, Aug 12 2012 %Y A045413 Cf. A000040. %K A045413 nonn,easy %O A045413 1,1 %A A045413 _N. J. A. Sloane_