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 A045404 #10 Sep 08 2022 08:44:56 %S A045404 3,5,11,13,17,19,31,41,47,53,59,61,67,73,83,89,97,101,103,109,131,137, %T A045404 139,151,157,167,173,179,181,193,199,223,227,229,241,251,257,263,269, %U A045404 271,277,283,293,307,311,313,347 %N A045404 Primes congruent to {3, 4, 5, 6} mod 7. %H A045404 Vincenzo Librandi, <a href="/A045404/b045404.txt">Table of n, a(n) for n = 1..1000</a> %t A045404 Select[Prime[Range[3000]],MemberQ[{3,4,5,6},Mod[#,7]]&] (* _Vincenzo Librandi_, Aug 12 2012 *) %o A045404 (Magma) [ p: p in PrimesUpTo(400) | p mod 7 in {3..6} ]; // _Vincenzo Librandi_, Aug 12 2012 %Y A045404 Cf. A000040. %K A045404 nonn,easy %O A045404 1,1 %A A045404 _N. J. A. Sloane_