cp's OEIS Frontend

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.

A045370 Primes congruent to {0, 2, 4, 6} mod 7.

This page as a plain text file.
%I A045370 #16 Sep 08 2022 08:44:55
%S A045370 2,7,11,13,23,37,41,53,67,79,83,97,107,109,137,139,149,151,163,167,
%T A045370 179,181,191,193,223,233,251,263,277,293,307,317,331,347,349,359,373,
%U A045370 389,401,419,431,433,443,457,461
%N A045370 Primes congruent to {0, 2, 4, 6} mod 7.
%C A045370 A039705(A049084(a(n))) = even; complement of A045415. - _Reinhard Zumkeller_, Feb 25 2008
%H A045370 R. Zumkeller, <a href="/A045370/b045370.txt">Table of n, a(n) for n = 1..1001</a>
%t A045370 Select[Prime[Range[300]],MemberQ[{0,2,4,6},Mod[#,7]]&] (* _Vincenzo Librandi_, Aug 10 2012 *)
%t A045370 Select[Prime[Range[110]], EvenQ[Mod[#, 7]] & ] (* _Bruno Berselli_, Aug 31 2012 *)
%o A045370 (Magma) [ p: p in PrimesUpTo(600) | p mod 7 in {0..6 by 2} ]; // _Vincenzo Librandi_, Aug 10 2012
%Y A045370 Cf. A045415, A045356, A137977.
%K A045370 nonn,easy
%O A045370 1,1
%A A045370 _N. J. A. Sloane_