A142133 Primes congruent to 24 mod 37.
61, 283, 431, 653, 727, 1097, 1171, 1319, 2207, 2281, 2503, 3169, 3391, 3539, 3613, 3761, 4057, 4649, 4723, 4871, 5167, 5981, 6203, 6277, 6869, 7757, 8053, 8423, 8719, 8867, 8941, 9311, 9533, 9829, 10273, 10939, 11087, 11161, 11383, 11827, 12049, 12197, 12641
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 24 ]; // Vincenzo Librandi, Aug 19 2012
-
Mathematica
Select[Range[24,30000,37],PrimeQ] (* Vladimir Joseph Stephan Orlovsky, May 11 2011 *) Select[Prime[Range[5000]],MemberQ[{24},Mod[#,37]]&] (* Vincenzo Librandi, Aug 19 2012 *)
-
PARI
is(n)=isprime(n) && n%37==24 \\ Charles R Greathouse IV, Jul 02 2016
Formula
a(n) ~ 36n log n. - Charles R Greathouse IV, Jul 02 2016