A145440 Primes of the form 8^k + 9.
17, 73, 521, 262153, 1073741833, 144115188075855881, 73786976294838206473, 273406340597876490546562778389702670669146178861651554553221325801244124899921990402939147127881737
Offset: 1
Keywords
Examples
For k=1, 8^1 + 9 = 17; for n=2, 8^2 + 9 = 73; for n=3, 8^3 + 9 = 521.
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..9
Programs
-
Magma
[a: n in [0..200] | IsPrime(a) where a is 8^n+9];
-
Mathematica
Select[8^Range[120]+9,PrimeQ] (* Harvey P. Dale, Jan 18 2011 *)
Comments