A215276 Primes congruent to {2, 4, 5, 6} mod 13.
2, 5, 17, 19, 31, 41, 43, 67, 71, 83, 97, 109, 149, 173, 197, 199, 223, 227, 239, 251, 277, 317, 331, 353, 379, 383, 409, 421, 431, 433, 457, 461, 487, 499, 509, 563, 577, 587, 613, 617, 641, 643, 691, 719, 733, 743, 769, 773, 797, 811, 821, 823, 863, 877
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, 4, 5, 6} ];
-
Mathematica
Select[Prime[Range[300]],MemberQ[{2,4,5,6},Mod[#,13]]&]