OFFSET
1,3
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..1350 (rows 1..20)
Marcel et al., Is there a formula for the number of st-dags (DAG with 1 source and 1 sink) with n vertices?, MathOverflow, 2021.
EXAMPLE
Triangle begins:
[1] 1;
[2] 0, 2;
[3] 0, 0, 9, 6;
[4] 0, 0, 0, 64, 132, 96, 24;
[5] 0, 0, 0, 0, 625, 2640, 4850, 4900, 2850, 900, 120;
...
PROG
(PARI)
T(n)={my(a=vector(n)); a[1]=1; for(n=2, #a, a[n]=sum(k=1, n-1, (-1)^(k-1)*binomial(n, k)*((1+'y)^(n-k)-1)^k*a[n-k])); [Vecrev(p) | p <- a]}
{ my(A=T(6)); for(n=1, #A, print(A[n])) }
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Andrew Howroyd, Jan 01 2022
STATUS
approved