login
A330831
a(n) = (F_n^2 - 1)^2, where F_n is a Fermat prime, A019434.
2
64, 576, 82944, 4362338304, 18447869990796263424
OFFSET
1,1
COMMENTS
Also the second element of the power-spectral basis of A330829.
The first element of the power-spectral basis of A330829 is A330830.
FORMULA
a(n) = (F(n)^2 - 1)^2, where F(n) = 2^(2^n)+1 is a Fermat prime.
EXAMPLE
a(0) = (3^2 - 1)^2 = 64.
MAPLE
F := proc(n) return 2^(2^n)+1 end;
a := proc(n) if isprime(F(n)) then return (F(n)^2-1)^2 fi; end;
[seq(a(n), n=0..4)];
KEYWORD
nonn
AUTHOR
Walter Kehowski, Jan 06 2020
STATUS
approved