login

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

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

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

%S 2,3,5,11,13,37,47,59,71,79,101,103,113,137,157,167,179,181,191,211,

%T 223,233,257,269,277,311,313,367,379,389,401,409,421,431,433,443,467,

%U 487,499,509,521,541,563,577,587,599,607,619,631,641,643,653,673,709

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

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

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

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

%Y Cf. A000040, A042989.

%K nonn,easy

%O 1,1

%A _Vincenzo Librandi_, Aug 09 2012