A105127 Primes of the form 32n+17.
17, 113, 241, 337, 401, 433, 593, 881, 977, 1009, 1201, 1297, 1361, 1489, 1553, 1777, 1873, 2129, 2161, 2417, 2609, 2801, 2833, 2897, 3089, 3121, 3217, 3313, 3697, 3761, 3793, 3889, 4049, 4177, 4241, 4273, 4337, 4561, 4657, 4721, 4817, 5009, 5233, 5297
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[ a: n in [0..200] | IsPrime(a) where a is 32*n+17 ]; // Vincenzo Librandi, Jul 19 2012
-
Mathematica
Select[Range[17,20000,32],PrimeQ] (* Vladimir Joseph Stephan Orlovsky, May 02 2011 *) Select[Table[32*n+17,{n,0,700}],PrimeQ] (* Vincenzo Librandi, Jul 19 2012 *)