A215156 Primes congruent to {2, 3, 5, 7} mod 17.
2, 3, 5, 7, 19, 37, 41, 53, 71, 73, 107, 109, 139, 173, 211, 223, 241, 257, 277, 311, 313, 347, 359, 379, 449, 461, 479, 547, 563, 617, 619, 631, 653, 683, 719, 733, 751, 787, 821, 823, 853, 857, 887, 937, 971, 991, 1039, 1061, 1091, 1093, 1129, 1163, 1193
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[ p: p in PrimesUpTo(2000) | p mod 17 in {2, 3, 5, 7} ];
-
Mathematica
Select[Prime[Range[600]],MemberQ[{2,3, 5, 7},Mod[#,17]]&]