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.

A045368 Primes congruent to {2, 5} mod 7.

This page as a plain text file.
%I A045368 #15 Sep 08 2022 08:44:55
%S A045368 2,5,19,23,37,47,61,79,89,103,107,131,149,163,173,191,229,233,257,271,
%T A045368 313,317,331,359,373,383,397,401,439,443,457,467,499,509,523,541,569,
%U A045368 593,607,653,677,691,709,719,733
%N A045368 Primes congruent to {2, 5} mod 7.
%H A045368 Vincenzo Librandi, <a href="/A045368/b045368.txt">Table of n, a(n) for n = 1..1000</a>
%t A045368 Select[Prime[Range[200]],MemberQ[{2,5},Mod[#,7]]&] (* _Harvey P. Dale_, Apr 28 2012 *)
%o A045368 (Magma) [ p: p in PrimesUpTo(1500) | p mod 7 in {2, 5} ]; // _Vincenzo Librandi_, Aug 06 2012
%Y A045368 Cf. A045392, A045458.
%K A045368 nonn,easy
%O A045368 1,1
%A A045368 _N. J. A. Sloane_