A215170 Primes congruent to {2, 5} mod 19.
2, 5, 43, 59, 97, 157, 173, 211, 233, 271, 347, 401, 439, 461, 499, 613, 727, 743, 857, 971, 1009, 1031, 1069, 1123, 1237, 1259, 1297, 1373, 1427, 1487, 1579, 1601, 1693, 1753, 1867, 1997, 2111, 2339, 2377, 2399, 2437, 2551, 2719, 2741, 2833, 2909, 2969
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[ p: p in PrimesUpTo(3000) | p mod 19 in {2, 5} ];
-
Mathematica
Select[Prime[Range[3000]],MemberQ[{2,5},Mod[#,19]]&]