A142119 Primes congruent to 10 mod 37.
47, 269, 491, 787, 1009, 1231, 1453, 1601, 1823, 2267, 2341, 2711, 3229, 3673, 3821, 4339, 4561, 4783, 4931, 5153, 5227, 5449, 6263, 6337, 6781, 7151, 7669, 7817, 8039, 8779, 9001, 9371, 10037, 10111, 10259, 10333, 11369, 11443, 11813, 11887, 12109, 12479
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 10 ]; // Vincenzo Librandi, Aug 19 2012
-
Mathematica
Select[Range[10,20000,37],PrimeQ] (* Vladimir Joseph Stephan Orlovsky, May 08 2011 *) Select[Prime[Range[5000]],MemberQ[{10},Mod[#,37]]&] (* Vincenzo Librandi, Aug 19 2012 *)
-
PARI
is(n)=isprime(n) && n%37==10 \\ Charles R Greathouse IV, Jul 02 2016
Formula
a(n) ~ 36n log n. - Charles R Greathouse IV, Jul 02 2016