A142139 Primes congruent to 30 mod 37.
67, 659, 733, 881, 1103, 1399, 1621, 2213, 2287, 2657, 2731, 2879, 2953, 3323, 3767, 3989, 4211, 4507, 4729, 4877, 4951, 5099, 5839, 5987, 6653, 6949, 7393, 7541, 8059, 8429, 9391, 9539, 9613, 10427, 10501, 10723, 11093, 11833, 11981, 12203, 12277, 12647
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 30 ]; // Vincenzo Librandi, Aug 19 2012
-
Mathematica
Select[Range[30,30000,37],PrimeQ] (* Vladimir Joseph Stephan Orlovsky, May 12 2011 *) Select[Prime[Range[5000]],MemberQ[{30},Mod[#,37]]&] (* Vincenzo Librandi, Aug 19 2012 *)
-
PARI
is(n)=isprime(n) && n%37==30 \\ Charles R Greathouse IV, Jul 03 2016
Formula
a(n) ~ 36n log n. - Charles R Greathouse IV, Jul 03 2016