login

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

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

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

%S 2,3,5,11,13,17,47,61,71,79,83,101,113,127,137,149,157,167,179,181,

%T 193,211,223,233,269,277,281,311,313,347,379,401,409,421,431,443,457,

%U 467,479,487,509,523,541,563,577,599,607,619,641,643,673,677,709,739

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

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

%t Select[Prime[Range[400]],MemberQ[{0,2,3,5,6},Mod[#,11]]&]

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

%Y Cf. A000040, A042992, A045469.

%K nonn,easy

%O 1,1

%A _Vincenzo Librandi_, Aug 09 2012