A330825 Numbers of the form 2^(2^k)*F_k, where F_k is a Fermat prime, A019434.
6, 20, 272, 65792, 4295032832
Offset: 1
Keywords
Examples
a(2) = 2^2*(2^2+1) = 20, and the spectral basis of 20 is {5,16}, consisting of primes and powers.
Programs
-
Maple
F := n -> 2^(2^n)+1; a := proc(n) if isprime(F(n)) then return 2^(2^n)*F(n) fi; end; [seq(a(n),n=0..4)];
Comments