A215155 Primes congruent to {2, 3, 5, 7} mod 13.
2, 3, 5, 7, 29, 31, 41, 59, 67, 83, 107, 109, 137, 163, 197, 211, 223, 239, 241, 263, 293, 317, 353, 367, 379, 397, 419, 421, 431, 449, 457, 499, 509, 523, 577, 587, 601, 613, 631, 653, 683, 691, 709, 733, 743, 757, 761, 769, 787, 809, 811, 821, 839, 863
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[p: p in PrimesUpTo(1000) | p mod 13 in {2, 3, 5, 7} ];
-
Mathematica
Select[Prime[Range[600]],MemberQ[{2,3, 5, 7},Mod[#,13]]&]