A142134 Primes congruent to 25 mod 37.
173, 617, 691, 839, 1061, 1283, 1579, 1801, 1949, 2393, 2467, 2689, 2837, 3947, 4021, 4243, 4391, 4909, 5279, 5501, 6389, 6833, 6907, 7129, 7351, 7499, 7573, 8017, 8387, 8461, 8609, 8831, 9127, 9349, 9497, 9719, 9941, 10163, 10459, 10607, 10903, 11273
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 25 ]; // Vincenzo Librandi, Aug 19 2012
-
Mathematica
Select[Range[25,30000,37],PrimeQ] (* Vladimir Joseph Stephan Orlovsky, May 11 2011 *) Select[Prime[Range[5000]],MemberQ[{25},Mod[#,37]]&] (* Vincenzo Librandi, Aug 19 2012 *)
-
PARI
is(n)=isprime(n) && n%37==25 \\ Charles R Greathouse IV, Jul 02 2016
Formula
a(n) ~ 36n log n. - Charles R Greathouse IV, Jul 02 2016