A142129 Primes congruent to 20 mod 37.
131, 353, 797, 1019, 1093, 1759, 1907, 2129, 2203, 2351, 2647, 3313, 3461, 4127, 4201, 4349, 4423, 4793, 5237, 5903, 6199, 6421, 6569, 6791, 7013, 7309, 7457, 7753, 7901, 8123, 8419, 8641, 8863, 9011, 9677, 9973, 10343, 10639, 10861, 11083, 11527, 11897
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 20 ]; // Vincenzo Librandi, Aug 19 2012
-
Mathematica
Select[Range[20,30000,37],PrimeQ] (* Vladimir Joseph Stephan Orlovsky, May 11 2011 *) Select[Prime[Range[5000]],MemberQ[{20},Mod[#,37]]&] (* Vincenzo Librandi, Aug 19 2012 *)
-
PARI
is(n)=isprime(n) && n%37==20 \\ Charles R Greathouse IV, Jul 02 2016
Formula
a(n) ~ 36n log n. - Charles R Greathouse IV, Jul 02 2016