A215355 Primes congruent to {0, 2, 3, 4, 5} mod 13.
2, 3, 5, 13, 17, 29, 31, 41, 43, 67, 83, 107, 109, 173, 197, 199, 211, 223, 239, 251, 263, 277, 317, 353, 367, 379, 419, 421, 431, 433, 457, 499, 509, 523, 563, 577, 587, 601, 613, 641, 653, 691, 719, 733, 743, 757, 769, 797, 809, 811, 821, 823, 863, 887
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 [0, 2, 3, 4, 5]];
-
Mathematica
Select[Prime[Range[400]],MemberQ[{0,2,3,4,5},Mod[#,13]]&]