A142137 Primes congruent to 28 mod 37.
139, 509, 953, 1249, 1471, 1619, 1693, 2063, 2137, 2729, 2803, 3469, 3617, 3691, 4283, 4357, 4801, 5023, 5171, 5393, 5689, 6133, 6577, 6947, 7243, 7687, 8353, 8501, 9241, 9463, 9833, 9907, 10499, 11239, 11831, 12497, 12941, 13163, 13681, 13829, 13903, 14051
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 28 ]; // Vincenzo Librandi, Aug 19 2012
-
Mathematica
Select[Range[28,30000,37],PrimeQ] (* Vladimir Joseph Stephan Orlovsky, May 12 2011 *) Select[Prime[Range[5000]],MemberQ[{28},Mod[#,37]]&] (* Vincenzo Librandi, Aug 19 2012 *)
-
PARI
is(n)=isprime(n) && n%37==28 \\ Charles R Greathouse IV, Jul 02 2016
Formula
a(n) ~ 36n log n. - Charles R Greathouse IV, Jul 02 2016