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”).

A054547
Triangular array giving number of labeled digraphs on n unisolated nodes and k=0..n*(n-1) arcs.
5
0, 0, 2, 1, 0, 0, 12, 20, 15, 6, 1, 0, 0, 12, 140, 435, 768, 920, 792, 495, 220, 66, 12, 1, 0, 0, 0, 240, 2520, 11604, 34150, 73560, 123495, 166860, 184426, 167900, 125965, 77520, 38760, 15504, 4845, 1140, 190, 20, 1
OFFSET
1,3
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..2680 (rows 1..20)
FORMULA
T(n, k) = Sum_{i=0..n} (-1)^(n-i)*binomial(n, i)*binomial(i*(i-1), k).
EXAMPLE
Triangle T(n,k) begins:
[0],
[0,2,1],
[0,0,12,20,15,6,1],
[0,0,12,140,435,768,920,792,495,220,66,12,1],
...
PROG
(PARI) row(n) = {Vecrev(sum(i=0, n, (-1)^(n-i)*binomial(n, i)*(1 + 'y)^(i*(i-1))), n*(n-1)+1)}
{ for(n=1, 6, print(row(n))) } \\ Andrew Howroyd, Jan 28 2022
CROSSREFS
Row sums are A054545.
Column sums are A121252.
The unlabeled version is A350908.
Cf. A054548 (graphs), A062735, A123554.
Sequence in context: A088632 A057272 A062735 * A202717 A291195 A025439
KEYWORD
easy,nonn,tabf
AUTHOR
Vladeta Jovovic, Apr 09 2000
STATUS
approved