A142114 Primes congruent to 5 mod 37.
5, 79, 227, 449, 523, 967, 1559, 2003, 2447, 2521, 3187, 3557, 3631, 3779, 3853, 4001, 4297, 4519, 4889, 5333, 5407, 5851, 6073, 6221, 6961, 7109, 7331, 8219, 8293, 8663, 8737, 9181, 9403, 9551, 10069, 10513, 10883, 10957, 11549, 12289, 12437, 12511, 12659
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[p: p in PrimesUpTo(15000) | p mod 37 eq 5 ]; // Vincenzo Librandi, Aug 19 2012
-
Mathematica
Select[Range[5,20000,37],PrimeQ] (* Vladimir Joseph Stephan Orlovsky, May 07 2011 *) Select[Prime[Range[5000]],MemberQ[{5},Mod[#,37]]&] (* Vincenzo Librandi, Aug 19 2012 *)
-
PARI
is(n)=isprime(n) && n%37==5 \\ Charles R Greathouse IV, Jul 02 2016
Formula
a(n) ~ 36n log n. - Charles R Greathouse IV, Jul 02 2016
Comments