A215165 Primes congruent to {1, 4} mod 17.
89, 103, 137, 157, 191, 239, 293, 307, 409, 443, 463, 599, 613, 647, 701, 769, 919, 953, 1021, 1109, 1123, 1259, 1279, 1327, 1361, 1381, 1429, 1483, 1531, 1619, 1667, 1721, 1789, 1823, 1871, 1973, 1993, 2027, 2129, 2143, 2333, 2347, 2381, 2503, 2551, 2687
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[ p: p in PrimesUpTo(3000) | p mod 17 in {1, 4} ];
-
Mathematica
Select[Prime[Range[3000]],MemberQ[{1,4},Mod[#,17]]&]