A142786 Primes congruent to 7 mod 60.
7, 67, 127, 307, 367, 487, 547, 607, 727, 787, 907, 967, 1087, 1327, 1447, 1567, 1627, 1747, 1867, 1987, 2287, 2347, 2467, 2647, 2707, 2767, 2887, 3067, 3187, 3307, 3547, 3607, 3727, 3847, 3907, 3967, 4027, 4327, 4447, 4507, 4567, 4987, 5107, 5167, 5227
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[p: p in PrimesUpTo(6000) | p mod 60 eq 7 ]; // Vincenzo Librandi, Sep 04 2012
-
Mathematica
Select[Prime[Range[1000]], Mod[#, 60] == 7 &] (* T. D. Noe, Oct 12 2012 *) Select[Range[7,5300,60],PrimeQ] (* Harvey P. Dale, Nov 21 2018 *)
Comments