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.

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

This page as a plain text file.
%I A045460 #14 Sep 08 2022 08:44:56
%S A045460 7,11,13,41,53,67,83,97,109,137,139,151,167,179,181,193,223,251,263,
%T A045460 277,293,307,347,349,389,419,431,433,461,487,503,557,571,587,599,601,
%U A045460 613,641,643,683,727,739,769,797
%N A045460 Primes congruent to {0, 4, 6} mod 7.
%H A045460 Vincenzo Librandi, <a href="/A045460/b045460.txt">Table of n, a(n) for n = 1..1000</a>
%t A045460 Select[Prime[Range[200]],MemberQ[{0,4,6},Mod[#,7]]&] (* _Vincenzo Librandi_, Aug 13 2012 *)
%t A045460 Select[Flatten[#+{0,4,6}&/@Range[7,1000,7]],PrimeQ] (* _Harvey P. Dale_, Dec 14 2019 *)
%o A045460 (Magma) [ p: p in PrimesUpTo(1000) | p mod 7 in {0, 4, 6} ]; // _Vincenzo Librandi_, Aug 13 2012
%Y A045460 Cf. A045313 (complement).
%K A045460 nonn,easy
%O A045460 1,1
%A A045460 _N. J. A. Sloane_