login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Primes congruent to {1, 2, 3, 4} mod 17.
2

%I #10 Sep 08 2022 08:46:03

%S 2,3,19,37,53,71,89,103,137,139,157,173,191,223,239,241,257,293,307,

%T 359,409,443,461,463,479,547,563,599,613,631,647,683,701,733,751,769,

%U 853,887,919,937,953,971,1021,1039,1091,1109,1123,1193,1259,1277

%N Primes congruent to {1, 2, 3, 4} mod 17.

%H Vincenzo Librandi, <a href="/A215304/b215304.txt">Table of n, a(n) for n = 1..1000</a>

%t Select[Prime[Range[600]],MemberQ[{1,2,3, 4},Mod[#,17]]&]

%o (Magma) [p: p in PrimesUpTo(1500) | p mod 17 in [1..4]];

%Y Cf. A000040, A045319, A045337, A215302-A215305.

%K nonn,easy

%O 1,1

%A _Vincenzo Librandi_, Aug 08 2012