A215133 Primes congruent to {3, 5, 6} mod 19.
3, 5, 41, 43, 79, 101, 139, 157, 193, 233, 269, 271, 307, 347, 367, 383, 421, 443, 461, 499, 557, 613, 709, 727, 823, 839, 877, 937, 953, 991, 1013, 1031, 1051, 1069, 1181, 1259, 1279, 1297, 1373, 1409, 1447, 1487, 1523, 1583, 1601, 1621, 1637, 1697, 1753
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 [3, 5, 6]];
-
Mathematica
Select[Prime[Range[800]],MemberQ[{3, 5, 6},Mod[#,19]]&]