A215393 Primes congruent to {1, 2} mod 19.
2, 59, 97, 173, 191, 211, 229, 401, 419, 439, 457, 571, 647, 743, 761, 857, 971, 1009, 1103, 1123, 1217, 1237, 1427, 1483, 1559, 1579, 1597, 1693, 1787, 1901, 1997, 2053, 2111, 2129, 2243, 2281, 2339, 2357, 2377, 2699, 2719, 2833, 2851, 2909, 2927
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 [1, 2]];
-
Mathematica
Select[Prime[Range[400]],MemberQ[{1,2},Mod[#,19]]&]