A105129 Primes of the form 128n+65.
193, 449, 577, 1217, 1601, 2113, 2753, 3137, 4289, 4673, 4801, 5441, 5569, 5953, 6337, 6977, 7489, 7873, 8513, 8641, 9281, 10177, 10433, 11329, 11969, 12097, 13121, 13249, 13633, 14401, 14657, 15809, 15937, 16193, 17729, 19009, 19777, 20161, 20929, 21313
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 128*n+65 ]; // Vincenzo Librandi, Jul 19 2012
-
Mathematica
Select[128*Range[0,200]+65,PrimeQ] (* Harvey P. Dale, Apr 17 2012 *) Select[Table[128*n+65,{n,0,700}],PrimeQ] (* Vincenzo Librandi, Jul 19 2012 *)