login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

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

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

%S 2,3,19,23,37,53,71,139,173,193,223,227,241,257,359,397,431,461,479,

%T 499,547,563,601,631,683,733,751,839,853,887,907,937,941,971,1009,

%U 1039,1091,1193,1213,1277,1447,1451,1481,1499,1549,1553,1567,1583,1601

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

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

%t Select[Prime[Range[300]],MemberQ[{2,3,6},Mod[#,17]]&]

%o (Magma) [p: p in PrimesUpTo(2000) | p mod 17 in [2, 3, 6]];

%Y Cf. A000040, A045341.

%K nonn,easy

%O 1,1

%A _Vincenzo Librandi_, Aug 10 2012