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.
%I A340798 #11 Jan 22 2021 21:24:52 %S A340798 1,1,0,1,1,0,1,2,3,0,1,3,10,25,0,1,4,21,122,543,0,1,5,36,339,3550, %T A340798 29281,0,1,6,55,724,12477,241442,3781503,0,1,7,78,1325,32316,1035843, %U A340798 37717630,1138779265,0 %N A340798 Square array read by descending antidiagonals. Let G be a simple labeled graph on n nodes. T(n,k) is the number of ways to give G an acyclic orientation and a coloring function C:V(G) -> {1,2,...,k} so that u->v implies C(u) >= C(v) for all u,v in V(G), n >= 0, k >= 0. %H A340798 R. P. Stanley, <a href="https://doi.org/10.1016/j.disc.2006.03.010">Acyclic orientation of graphs</a>, Discrete Math. 5 (1973), 171-178. %F A340798 Let E(x) = Sum_{n>=0} x^n/(n!*2^binomial(n,2)). Then Sum_{n>=0} T(n,k)*x^n/(n!*2^binomial(n,2)) = 1/E(-x)^k. %F A340798 T(n,k) = (-1)^n p_n(-k) where p_n is the n-th polynomial described in A219765. %e A340798 Array begins %e A340798 1, 1, 1, 1, 1, 1, ... %e A340798 0, 1, 2, 3, 4, 5, ... %e A340798 0, 3, 10, 21, 36, 55, ... %e A340798 0, 25, 122, 339, 724, 1325, ... %e A340798 0, 543, 3550, 12477, 32316, 69595, ... %e A340798 0, 29281, 241442, 1035843, 3180484, 7934885, ... %e A340798 ... %t A340798 nn = 6; e[x_] := Sum[x^n/(n! 2^Binomial[n, 2]), {n, 0, nn}]; %t A340798 Prepend[Table[Table[n! 2^Binomial[n, 2], {n, 0, nn}] CoefficientList[ %t A340798 Series[1/e[-x]^k, {x, 0, nn}], x], {k, 1, nn}],PadRight[{1}, nn + 1]] // Transpose // Grid %Y A340798 Cf. A003024 (column k=1), A339934 (column k=2), A322280, A219765. %K A340798 nonn,tabl %O A340798 0,8 %A A340798 _Geoffrey Critzer_, Jan 21 2021