A142121 Primes congruent to 12 mod 37.
197, 271, 419, 641, 863, 937, 1307, 1381, 1973, 2269, 2417, 2713, 2861, 3083, 3527, 3823, 4637, 4933, 5081, 5303, 5821, 6043, 6709, 6857, 7079, 7523, 8263, 8707, 8929, 9151, 9521, 9743, 9817, 10039, 10631, 10853, 11149, 11519, 11593, 12037, 12703, 13147, 13591
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 12 ]; // Vincenzo Librandi, Aug 19 2012
-
Mathematica
Select[Range[12,20000,37],PrimeQ] (* Vladimir Joseph Stephan Orlovsky, May 08 2011 *) Select[Prime[Range[5000]],MemberQ[{12},Mod[#,37]]&] (* Vincenzo Librandi, Aug 19 2012 *)
-
PARI
is(n)=isprime(n) && n%37==12 \\ Charles R Greathouse IV, Jul 02 2016
Formula
a(n) ~ 36n log n. - Charles R Greathouse IV, Jul 02 2016