A215213 Primes congruent to {2, 5, 7} mod 19.
2, 5, 7, 43, 59, 83, 97, 157, 173, 197, 211, 233, 271, 311, 347, 349, 401, 439, 461, 463, 499, 577, 613, 653, 691, 727, 743, 857, 881, 919, 971, 1009, 1031, 1033, 1069, 1109, 1123, 1223, 1237, 1259, 1297, 1373, 1427, 1451, 1487, 1489, 1579, 1601, 1693
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[ p: p in PrimesUpTo(2000) | p mod 19 in {2, 5, 7} ];
-
Mathematica
Select[Prime[Range[1000]],MemberQ[{2,5,7},Mod[#,19]]&]