A215210 Primes congruent to {2, 5, 7} mod 11.
2, 5, 7, 13, 29, 71, 73, 79, 101, 137, 139, 167, 181, 211, 227, 233, 269, 271, 277, 293, 313, 337, 359, 379, 401, 409, 431, 467, 491, 541, 557, 563, 577, 599, 601, 607, 643, 673, 709, 733, 739, 761, 797, 821, 827, 863, 887, 907, 929, 937, 953, 997, 1019, 1039
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[ p: p in PrimesUpTo(2000) | p mod 11 in {2, 5, 7} ];
-
Mathematica
Select[Prime[Range[800]],MemberQ[{2, 5, 7},Mod[#,11]]&]