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
J Gregory Moxness, Table of n, a(n) for n = 1..10
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
KEYWORD
nonn,easy
AUTHOR
J Gregory Moxness, Nov 24 2023
EXTENSIONS
Previous Mathematica program replaced by Harvey P. Dale, Aug 23 2024
STATUS
approved