login
A367629
a(n) = 2^2^(n + 1) - 2^(n + 2).
1
8, 240, 65504, 4294967232, 18446744073709551488, 340282366920938463463374607431768211200, 115792089237316195423570985008687907853269984665640564039457584007913129639424
OFFSET
1,1
COMMENTS
a(n) is the absolute value totals of the characteristic polynomial coefficients of n-qubit normalized Hadamard matrices, excluding the 2nd and next-to-last nonzero entries.
a(n) is also the total of the entries in row 2^(n+1) of Pascal's triangle (A007318), excluding the 2nd and next-to-last entries.
LINKS
FORMULA
a(n) = A107584(2^n).
MATHEMATICA
Table[2^2^(n+1)-2^(n+2), {n, 10}] (* Harvey P. Dale, Aug 23 2024 *)
PROG
(Python)
def A367629(n): return (1<<(m:=1<<n+1))-(m<<1) # Chai Wah Wu, Nov 29 2023
CROSSREFS
Sequence in context: A302005 A301778 A158263 * A221417 A351367 A351370
KEYWORD
nonn,easy
AUTHOR
J Gregory Moxness, Nov 24 2023
EXTENSIONS
Previous Mathematica program replaced by Harvey P. Dale, Aug 23 2024
STATUS
approved