login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A166734
Determinant of the adjacency matrix of the n-cube graph Q_n.
1
0, -1, 0, 9, 0, 1476225, 0, 32724184981958652351324462890625, 0
OFFSET
0,4
REFERENCES
N. Biggs, Algebraic Graph Theory, Cambridge Univ. Press 1974, p. 145.
LINKS
FORMULA
a(n) = Product_{j=0..n} (n-2j)^binomial(n,j).
EXAMPLE
a(3) = (3^1)*(1^3)*((-1)^3)*((-3)^1) = 3*1*(-1)*(-3) = 9.
MAPLE
a:= n-> mul((n-2*j)^binomial(n, j), j=0..n):
seq(a(n), n=0..9); # Alois P. Heinz, Jun 12 2022
PROG
(PARI) a(n) = prod(j=0, n, (n-2*j)^binomial(n, j)); \\ Michel Marcus, Feb 08 2020
CROSSREFS
Cf. A229333.
Sequence in context: A067479 A308803 A249489 * A155783 A257097 A256667
KEYWORD
sign,easy
AUTHOR
Franz Vrabec, Oct 20 2009
STATUS
approved