A142001 Primes congruent to 25 mod 29.
83, 199, 257, 373, 431, 547, 953, 1069, 1301, 1823, 1997, 2113, 2287, 2693, 3041, 3331, 3389, 3853, 3911, 4027, 4201, 4259, 4549, 4723, 5303, 5419, 5477, 5651, 6173, 6521, 6637, 6869, 7043, 7159, 7333, 7507, 7681, 8087, 8377, 8609, 8783, 9421, 9479, 9769
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[p: p in PrimesUpTo(12000) | p mod 29 eq 25 ]; // Vincenzo Librandi, Aug 17 2012
-
Mathematica
Select[Range[25,20000,29],PrimeQ] (* Vladimir Joseph Stephan Orlovsky, Apr 07 2011 *) Select[Prime[Range[2000]],Mod[#,29]==25&] (* Harvey P. Dale, Nov 12 2019 *)
-
PARI
is(n)=isprime(n) && n%29==25 \\ Charles R Greathouse IV, Jul 03 2016
Formula
a(n) ~ 28n log n. - Charles R Greathouse IV, Jul 03 2016