A142135 Primes congruent to 26 mod 37.
137, 211, 359, 433, 877, 1321, 1543, 1913, 1987, 2357, 2579, 2801, 3023, 3319, 3467, 3541, 3911, 4133, 4651, 4799, 5021, 6131, 6353, 6427, 6871, 7019, 7537, 7759, 7907, 8573, 8647, 9091, 9239, 9461, 10867, 11311, 11681, 11903, 12347, 12421, 12569, 12791
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 26 ]; // Vincenzo Librandi, Aug 19 2012
-
Mathematica
Select[Range[26,30000,37],PrimeQ] (* Vladimir Joseph Stephan Orlovsky, May 12 2011 *) Select[Prime[Range[5000]],MemberQ[{26},Mod[#,37]]&] (* Vincenzo Librandi, Aug 19 2012 *)
-
PARI
is(n)=isprime(n) && n%37==26 \\ Charles R Greathouse IV, Jul 02 2016
Formula
a(n) ~ 36n log n. - Charles R Greathouse IV, Jul 02 2016