A215212 Primes congruent to {2, 5, 7} mod 17.
2, 5, 7, 19, 41, 53, 73, 107, 109, 211, 223, 257, 277, 311, 313, 347, 359, 379, 449, 461, 563, 617, 619, 631, 653, 719, 733, 787, 821, 823, 857, 937, 971, 991, 1039, 1061, 1093, 1129, 1163, 1229, 1231, 1277, 1297, 1367, 1399, 1433, 1447, 1481, 1549, 1571
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, 5, 7} ];
-
Mathematica
Select[Prime[Range[1000]],MemberQ[{2,5,7},Mod[#,17]]&]