A141993 Primes congruent to 17 mod 29.
17, 191, 307, 829, 887, 1061, 1409, 1583, 1699, 1873, 1931, 2221, 2801, 2917, 3323, 3613, 3671, 4019, 4483, 4657, 4831, 4889, 5179, 5237, 5527, 5701, 6397, 6571, 6803, 6977, 7151, 7499, 7673, 7789, 7963, 8311, 8369, 8543, 9007, 9181, 9239, 9413, 9587, 10399
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 17 ]; // Vincenzo Librandi, Aug 17 2012
-
Mathematica
Select[Range[17,20000,29],PrimeQ] (* Vladimir Joseph Stephan Orlovsky, Apr 07 2011 *)
-
PARI
is(n)=isprime(n) && n%29==17 \\ Charles R Greathouse IV, Jul 03 2016
Formula
a(n) ~ 28n log n. - Charles R Greathouse IV, Jul 03 2016
Comments