A215379 Primes congruent to {0, 1, 2, 3} mod 13.
2, 3, 13, 29, 41, 53, 67, 79, 107, 131, 157, 197, 211, 223, 263, 313, 353, 367, 379, 419, 431, 443, 457, 509, 521, 523, 547, 587, 599, 601, 613, 653, 677, 691, 743, 757, 769, 809, 821, 859, 887, 911, 937, 977, 991, 1069, 1093, 1171
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[p: p in PrimesUpTo(1200) | p mod 13 in [0..3]];
-
Mathematica
Select[Prime[Range[300]],MemberQ[{0,1, 2,3},Mod[#,13]]&]