A215304 Primes congruent to {1, 2, 3, 4} mod 17.
2, 3, 19, 37, 53, 71, 89, 103, 137, 139, 157, 173, 191, 223, 239, 241, 257, 293, 307, 359, 409, 443, 461, 463, 479, 547, 563, 599, 613, 631, 647, 683, 701, 733, 751, 769, 853, 887, 919, 937, 953, 971, 1021, 1039, 1091, 1109, 1123, 1193, 1259, 1277
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[p: p in PrimesUpTo(1500) | p mod 17 in [1..4]];
-
Mathematica
Select[Prime[Range[600]],MemberQ[{1,2,3, 4},Mod[#,17]]&]