A215322 Primes congruent to {1, 2, 3, 4, 6} mod 11.
2, 3, 13, 17, 23, 37, 47, 59, 61, 67, 79, 83, 89, 101, 103, 113, 127, 149, 157, 167, 179, 191, 193, 199, 211, 223, 233, 257, 277, 281, 311, 331, 347, 353, 367, 389, 397, 409, 419, 421, 431, 433, 443, 457, 463, 479, 487, 499, 509, 521, 523, 541, 563, 587
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[p: p in PrimesUpTo(600) | p mod 11 in [1, 2, 3, 4, 6]];
-
Mathematica
Select[Prime[Range[400]],MemberQ[{1,2,3,4,6},Mod[#,11]]&]