A140540 Primes of form 17*n - 3.
31, 167, 269, 337, 439, 541, 643, 677, 881, 983, 1051, 1153, 1187, 1289, 1459, 1493, 1663, 1697, 1867, 1901, 2003, 2207, 2309, 2377, 2411, 2683, 2819, 2887, 3023, 3329, 3499, 3533, 3907, 4111, 4349, 4451, 4519, 4621, 4723, 5233, 5437, 5471, 5573, 5641, 5743
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[p: p in PrimesUpTo(6000) | p mod 34 eq 31 ]; // Vincenzo Librandi, Aug 15 2012
-
Mathematica
Select[Range[17,15000,17]-3,PrimeQ] (* Vladimir Joseph Stephan Orlovsky, May 18 2011 *) Select[Prime[Range[800]], MemberQ[{31}, Mod[#, 34]] &] (* Vincenzo Librandi, Aug 15 2012 *)
Extensions
Corrected and extended by N. J. A. Sloane, Jul 11 2008
Edited by N. J. A. Sloane at the suggestion of R. J. Mathar, Jul 20 2008
Comments