OFFSET
0,7
COMMENTS
The sums of the absolute values of the entries in each row gives A334247, the number of acyclic orientations of edges of the n-cube.
LINKS
Peter Kagey, Table of n, a(n) for n = 0..68 (rows 0..5; row 5 from Andrew Howroyd's file)
Andrew Howroyd, Chromatic Polynomials of Hypercubes Q_0 to Q_5
Eric Weisstein's World of Mathematics, Chromatic Polynomial.
Eric Weisstein's World of Mathematics, Hypercube Graph.
FORMULA
T(n,0) = 0.
T(n,k) = Sum_{i=1..2^n}, Stirling1(i,k) * A334159(n,i). - Andrew Howroyd, Apr 25 2020
EXAMPLE
Table begins:
n/k| 0 1 2 3 4 5 6 7 8
---+-------------------------------------------
0| 0, 1
1| 0, -1, 1
2| 0, -3, 6, -4, 1
3| 0, -133, 423, -572, 441, -214, 66, -12, 1
MAPLE
with(GraphTheory): with(SpecialGraphs):
T:= n-> (p-> seq(coeff(p, x, i), i=0..degree(p)))(
ChromaticPolynomial(HypercubeGraph(n), x)):
seq(T(n), n=0..4); # Alois P. Heinz, Jan 14 2025
MATHEMATICA
T[n_, k_] := Coefficient[ChromaticPolynomial[HypercubeGraph[n], x], x, k]
CROSSREFS
KEYWORD
sign,tabf
AUTHOR
Peter Kagey, Apr 21 2020
STATUS
approved