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

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

%S 2,3,13,17,23,47,61,67,79,83,89,101,113,127,149,157,167,179,193,199,

%T 211,223,233,277,281,311,331,347,353,397,409,419,421,431,443,457,463,

%U 479,487,509,523,541,563,607,617,619,641,661,673,677,683,727,739,743

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

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

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

%o (Magma) [p: p in PrimesUpTo(800) | p mod 11 in [1, 2, 3, 6]];

%Y Cf. A000040, A045340.

%K nonn,easy

%O 1,1

%A _Vincenzo Librandi_, Aug 10 2012