A215157 Primes congruent to {2, 3, 5, 7} mod 19.
2, 3, 5, 7, 41, 43, 59, 79, 83, 97, 157, 173, 193, 197, 211, 233, 269, 271, 307, 311, 347, 349, 383, 401, 421, 439, 461, 463, 499, 577, 613, 653, 691, 727, 743, 839, 857, 877, 881, 919, 953, 971, 991, 1009, 1031, 1033, 1069, 1109, 1123, 1181, 1223, 1237
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, 3, 5, 7} ];
-
Mathematica
Select[Prime[Range[600]],MemberQ[{2,3, 5, 7},Mod[#,19]]&]