login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A166734 Determinant of the adjacency matrix of the n-cube graph Q_n. 1
0, -1, 0, 9, 0, 1476225, 0, 32724184981958652351324462890625, 0 (list; graph; refs; listen; history; text; internal format)
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 15:20 EDT 2024. Contains 371916 sequences. (Running on oeis4.)