A105130 Primes of the form 256n+129.
641, 1153, 1409, 2689, 3457, 4481, 4993, 6529, 7297, 9601, 9857, 10369, 11393, 12161, 13441, 13697, 15233, 16001, 18049, 19073, 19841, 20353, 21121, 21377, 26497, 28289, 29569, 30593, 31873, 33409, 35201, 35969, 38273, 39041, 40577, 43649, 44417, 45697
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 256*n+129 ]; // Vincenzo Librandi, Jul 19 2012
-
Mathematica
Select[Table[256*n+129,{n,0,700}],PrimeQ] (* Vincenzo Librandi, Jul 19 2012 *)