A105128 Primes of the form 64n+33.
97, 353, 673, 929, 1249, 1697, 1889, 2017, 2081, 2273, 2593, 2657, 3041, 3169, 3361, 3617, 4001, 4129, 4513, 5153, 5281, 5857, 6113, 6689, 7393, 7457, 7649, 7841, 8161, 8353, 8609, 8737, 8929, 9377, 9697, 10273, 10337, 10529, 10657, 11489, 11617, 11681
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 64*n+33]; // Vincenzo Librandi, Jul 19 2012
-
Mathematica
Select[Table[64*n+33,{n,0,700}],PrimeQ] (* Vincenzo Librandi, Jul 19 2012 *)