A215307 Primes congruent to {1, 2, 3, 5} mod 13.
2, 3, 5, 29, 31, 41, 53, 67, 79, 83, 107, 109, 131, 157, 197, 211, 223, 239, 263, 313, 317, 353, 367, 379, 419, 421, 431, 443, 457, 499, 509, 521, 523, 547, 577, 587, 599, 601, 613, 653, 677, 691, 733, 743, 757, 769, 809, 811, 821, 859, 863, 887, 911
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 [1, 2, 3, 5]];
-
Mathematica
Select[Prime[Range[400]],MemberQ[{1,2,3,5},Mod[#,13]]&]