A142125 Primes congruent to 16 mod 37.
53, 127, 349, 571, 719, 941, 1163, 1237, 1459, 1607, 2273, 2347, 2791, 2939, 3457, 4049, 4271, 4493, 4567, 4789, 4937, 5011, 5233, 5381, 6047, 6121, 6269, 6343, 6491, 7823, 8563, 8933, 9007, 9377, 10487, 10709, 11597, 12041, 12263, 12781, 13003, 13151, 13669
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 16 ]; // Vincenzo Librandi, Aug 19 2012
-
Mathematica
Select[Range[16,30000,37],PrimeQ] (* Vladimir Joseph Stephan Orlovsky, May 11 2011 *) Select[Prime[Range[50000]],MemberQ[{16},Mod[#,37]]&] (* Vincenzo Librandi, Aug 19 2012 *)
-
PARI
is(n)=isprime(n) && n%37==16 \\ Charles R Greathouse IV, Jul 02 2016
Formula
a(n) ~ 36n log n. - Charles R Greathouse IV, Jul 02 2016