cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A166734 Determinant of the adjacency matrix of the n-cube graph Q_n.

Original entry on oeis.org

0, -1, 0, 9, 0, 1476225, 0, 32724184981958652351324462890625, 0
Offset: 0

Views

Author

Franz Vrabec, Oct 20 2009

Keywords

Examples

			a(3) = (3^1)*(1^3)*((-1)^3)*((-3)^1) = 3*1*(-1)*(-3) = 9.
		

References

  • N. Biggs, Algebraic Graph Theory, Cambridge Univ. Press 1974, p. 145.

Crossrefs

Cf. A229333.

Programs

  • 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
  • PARI
    a(n) = prod(j=0, n, (n-2*j)^binomial(n,j)); \\ Michel Marcus, Feb 08 2020

Formula

a(n) = Product_{j=0..n} (n-2j)^binomial(n,j).