A142126 Primes congruent to 17 mod 37.
17, 239, 313, 461, 683, 757, 1201, 1423, 1571, 1867, 2089, 2237, 2311, 2459, 2903, 3347, 3643, 4013, 4457, 4679, 5197, 5419, 5641, 6011, 6529, 6899, 7121, 7417, 7639, 8009, 8231, 8527, 8971, 9341, 9859, 10007, 10303, 11117, 11783, 12227, 12301, 12671, 12893
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 17 ]; // Vincenzo Librandi, Aug 19 2012
-
Mathematica
Select[Range[17,30000,37],PrimeQ] (* Vladimir Joseph Stephan Orlovsky, May 11 2011 *) Select[Prime[Range[5000]],MemberQ[{17},Mod[#,37]]&] (* Vincenzo Librandi, Aug 19 2012 *)
-
PARI
is(n)=isprime(n) && n%37==17 \\ Charles R Greathouse IV, Jul 02 2016
Formula
a(n) ~ 36n log n. - Charles R Greathouse IV, Jul 02 2016