A142138 Primes congruent to 29 mod 37.
29, 103, 251, 547, 769, 991, 1213, 1361, 1583, 1657, 1879, 2027, 2693, 2767, 3137, 3359, 3433, 3581, 3803, 3877, 4099, 4691, 4987, 5209, 5431, 5653, 5801, 6689, 6763, 6911, 7207, 7577, 7873, 8243, 8317, 8539, 8761, 9649, 9871, 10093, 10463, 11351, 12239, 12757
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 29 ]; // Vincenzo Librandi, Aug 19 2012
-
Mathematica
Select[Range[29,30000,37],PrimeQ] (* Vladimir Joseph Stephan Orlovsky, May 12 2011 *) Select[Prime[Range[5000]],MemberQ[{29},Mod[#,37]]&] (* Vincenzo Librandi, Aug 19 2012 *)
-
PARI
is(n)=isprime(n) && n%37==29 \\ Charles R Greathouse IV, Jul 02 2016
Formula
a(n) ~ 36n log n. - Charles R Greathouse IV, Jul 02 2016
Comments