A214888 Primes congruent to {2, 3} mod 11.
2, 3, 13, 47, 79, 101, 113, 157, 167, 179, 211, 223, 233, 277, 311, 409, 421, 431, 443, 487, 509, 541, 563, 607, 619, 641, 673, 739, 751, 761, 773, 827, 839, 883, 937, 971, 1069, 1091, 1103, 1201, 1213, 1223, 1279, 1289, 1301, 1367, 1399, 1433, 1487, 1499
Offset: 1
Keywords
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[p: p in PrimesUpTo(2000) | p mod 11 in [2, 3]];
-
Mathematica
Select[Prime[Range[500]],MemberQ[{2,3},Mod[#,11]]&]