A215392 Primes congruent to {1, 2} mod 17.
2, 19, 53, 103, 137, 223, 239, 257, 307, 359, 409, 443, 461, 563, 613, 631, 647, 733, 919, 937, 953, 971, 1021, 1039, 1123, 1259, 1277, 1327, 1361, 1429, 1447, 1481, 1531, 1549, 1583, 1667, 1753, 1787, 1871, 1889, 1973, 2143, 2161, 2297, 2347, 2381, 2399, 2467
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[p: p in PrimesUpTo(2500) | p mod 17 in [1, 2]];
-
Mathematica
Select[Prime[Range[300]],MemberQ[{1,2},Mod[#,17]]&]