A104073 Primes of the form 2^n+7^2.
53, 113, 16433, 262193, 4194353, 67108913, 5846006549323611672814739330865132078623730171953, 1496577676626844588240573268701473812127674924007473
Offset: 1
Keywords
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..13
Programs
-
Magma
[ a: n in [0..250] | IsPrime(a) where a is 2^n+49]; // Vincenzo Librandi, Jul 19 2012
-
Mathematica
Select[Table[2^n+49,{n,0,400}],PrimeQ] (* Vincenzo Librandi, Jul 19 2012 *)
Comments