A142145 Primes congruent to 36 mod 37.
73, 443, 739, 887, 1109, 1553, 1627, 1997, 2293, 2441, 2663, 3181, 3329, 3847, 4217, 4513, 4957, 5179, 5623, 6067, 6659, 6733, 7103, 7177, 7547, 7621, 8287, 8731, 9323, 9397, 9619, 9767, 10211, 10433, 10729, 11173, 11321, 11617, 11839, 11987, 12653, 13171
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 36 ]; // Vincenzo Librandi, Aug 19 2012
-
Mathematica
Select[Range[36,30000,37],PrimeQ] (* Vladimir Joseph Stephan Orlovsky, May 15 2011 *) Select[Prime[Range[5000]],MemberQ[{36},Mod[#,37]]&] (* Vincenzo Librandi, Aug 19 2012 *)
-
PARI
is(n)=isprime(n) && n%37==36 \\ Charles R Greathouse IV, Jul 02 2016
Formula
a(n) ~ 36n log n. - Charles R Greathouse IV, Jul 02 2016