A330826 Numbers of the form 2^((2^n)+1)*F_n, where F_n is a Fermat prime, A019434.
12, 40, 544, 131584, 8590065664
Offset: 1
Examples
a(2) = 2^(2+1)*5 = 40, and the spectral basis of 40 is {25,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)+1)*F(n) fi; end;
Comments