A142136 Primes congruent to 27 mod 37.
101, 397, 619, 1063, 1433, 1877, 1951, 2099, 2543, 2617, 3061, 3209, 3727, 5059, 5281, 5503, 5651, 6317, 6761, 6983, 7057, 7649, 7723, 8093, 8167, 8389, 8537, 9203, 9277, 9721, 10091, 10313, 10831, 10979, 11423, 11497, 11719, 11867, 11941, 12163, 12829
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 27 ]; // Vincenzo Librandi, Aug 19 2012
-
Mathematica
Select[Range[27,30000,37],PrimeQ] (* Vladimir Joseph Stephan Orlovsky, May 12 2011 *) Select[Prime[Range[5000]],MemberQ[{27},Mod[#,37]]&] (* Vincenzo Librandi, Aug 19 2012 *)
-
PARI
is(n)=isprime(n) && n%37==27 \\ Charles R Greathouse IV, Jul 02 2016
Formula
a(n) ~ 36n log n. - Charles R Greathouse IV, Jul 02 2016