A215162 Primes congruent to {2, 3, 5, 7, 11} mod 19.
2, 3, 5, 7, 11, 41, 43, 59, 79, 83, 97, 157, 163, 173, 193, 197, 211, 233, 239, 269, 271, 277, 307, 311, 347, 349, 353, 383, 401, 421, 439, 461, 463, 467, 499, 577, 613, 619, 653, 691, 727, 733, 743, 809, 839, 857, 877, 881, 919, 953, 971, 991
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[ p: p in PrimesUpTo(1000) | p mod 19 in {2, 3, 5, 7, 11} ];
-
Mathematica
Select[Prime[Range[400]],MemberQ[{2,3, 5, 7, 11},Mod[#,19]]&]