A215131 Primes congruent to {3, 5, 6} mod 13.
3, 5, 19, 29, 31, 71, 83, 97, 107, 109, 149, 211, 227, 239, 263, 317, 331, 367, 383, 409, 419, 421, 461, 487, 499, 523, 577, 601, 617, 643, 653, 733, 757, 773, 809, 811, 863, 877, 887, 929, 941, 967, 991, 1019, 1033, 1069, 1097, 1123, 1163, 1201, 1277, 1279
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[p: p in PrimesUpTo(1500) | p mod 13 in [3, 5, 6]];
-
Mathematica
Select[Prime[Range[800]],MemberQ[{3, 5, 6},Mod[#,13]]&]