A215163 Primes congruent to {1, 4} mod 11.
23, 37, 59, 67, 89, 103, 191, 199, 257, 331, 353, 367, 389, 397, 419, 433, 463, 499, 521, 587, 617, 631, 653, 661, 683, 719, 727, 829, 859, 881, 947, 983, 991, 1013, 1049, 1093, 1123, 1181, 1277, 1291, 1321, 1409, 1423, 1453, 1489, 1511, 1607, 1621, 1709, 1753, 1783, 1871, 1907
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 {1, 4} ];
-
Mathematica
Select[Prime[Range[2000]],MemberQ[{1,4},Mod[#,11]]&]