A142120 Primes congruent to 11 mod 37.
11, 233, 307, 677, 751, 1787, 1861, 2083, 2749, 2897, 2971, 3119, 3637, 4007, 4229, 4451, 4673, 4969, 5413, 5783, 5857, 6079, 6301, 6449, 6967, 7411, 7559, 8447, 8521, 8669, 9187, 9631, 10223, 10667, 10889, 11777, 12073, 12517, 12739, 13109, 13183, 13331
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 11 ]; // Vincenzo Librandi, Aug 19 2012
-
Mathematica
Select[Range[11,20000,37],PrimeQ] (* Vladimir Joseph Stephan Orlovsky, May 08 2011 *) Select[Prime[Range[5000]],MemberQ[{11},Mod[#,37]]&] (* Vincenzo Librandi, Aug 19 2012 *)
-
PARI
is(n)=isprime(n) && n%37==11 \\ Charles R Greathouse IV, Jul 02 2016
Formula
a(n) ~ 36n log n. - Charles R Greathouse IV, Jul 02 2016