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 A045432 #22 Sep 08 2022 08:44:56 %S A045432 3,11,17,31,53,59,67,73,101,109,137,151,157,179,193,199,227,241,263, %T A045432 269,277,283,311,347,353,367,389,409,431,479,487,521,557,563,571,577, %U A045432 599,613,619,641,647,661,683,739 %N A045432 Primes congruent to {3, 4} mod 7. %C A045432 Or, primes p such that p^2 == 2 (mod 7). - _Zak Seidov_, May 11 2013 %H A045432 Vincenzo Librandi, <a href="/A045432/b045432.txt">Table of n, a(n) for n = 1..1000</a> %t A045432 Select[Prime[Range[200]],MemberQ[{3,4},Mod[#,7]]&] (* _Vincenzo Librandi_, Aug 13 2012 *) %t A045432 Select[Prime[Range[200]], PowerMod[#,2,7] == 2 &] (* _Zak Seidov_, May 11 2013 *) %o A045432 (Magma) [ p: p in PrimesUpTo(1000) | p mod 7 in {3,4} ]; // _Vincenzo Librandi_, Aug 13 2012 %Y A045432 Cf. A047341 (superset), A225550. %K A045432 nonn,easy %O A045432 1,1 %A A045432 _N. J. A. Sloane_