A215280 Primes congruent to {2, 3, 4} mod 13.
2, 3, 17, 29, 41, 43, 67, 107, 173, 197, 199, 211, 223, 251, 263, 277, 353, 367, 379, 419, 431, 433, 457, 509, 523, 563, 587, 601, 613, 641, 653, 691, 719, 743, 757, 769, 797, 809, 821, 823, 887, 953, 977, 991, 1031, 1069, 1109, 1187, 1213, 1237, 1277
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[p: p in PrimesUpTo(2000) | p mod 13 in [2..4]];
-
Mathematica
Select[Prime[Range[600]], MemberQ[{2, 3, 4}, Mod[#, 13]] &]
Comments