A215102 Primes congruent to {2, 3, 5} mod 11.
2, 3, 5, 13, 47, 71, 79, 101, 113, 137, 157, 167, 179, 181, 211, 223, 233, 269, 277, 311, 313, 379, 401, 409, 421, 431, 443, 467, 487, 509, 541, 563, 577, 599, 607, 619, 641, 643, 673, 709, 739, 751, 761, 773, 797, 827, 839, 863, 883, 907, 929, 937, 971
Offset: 1
Keywords
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[p: p in PrimesUpTo(1500) | p mod 11 in [2, 3, 5]];
-
Mathematica
Select[Prime[Range[1000]],MemberQ[{2,3, 5},Mod[#,11]]&]