A215132 Primes congruent to {3, 5, 6} mod 17.
3, 5, 23, 37, 71, 73, 107, 139, 173, 193, 227, 241, 277, 311, 379, 397, 431, 479, 499, 547, 601, 617, 683, 719, 751, 787, 821, 839, 853, 887, 907, 941, 991, 1009, 1091, 1093, 1193, 1213, 1229, 1297, 1399, 1433, 1451, 1499, 1553, 1567, 1601, 1621, 1637, 1669
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 [3, 5, 6]];
-
Mathematica
Select[Prime[Range[800]],MemberQ[{3, 5, 6},Mod[#,17]]&]