OFFSET
0,8
REFERENCES
R. W. Robinson, Numerical implementation of graph counting algorithms, AGRC Grant, Math. Dept., Univ. Newcastle, Australia, 1976.
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..495 (rows 0..30; rows 0..15 from R. W. Robinson)
Andrew Howroyd, PARI program, Dec 2021, updated Jan 2022.
EXAMPLE
Triangle T(n,k) begins:
1:
1, 0;
1, 1, 0;
1, 2, 3, 0;
1, 3, 11, 16, 0;
1, 4, 25, 108, 164, 0;
1, 5, 47, 422, 2168, 3341, 0;
1, 6, 78, 1251, 15484, 88747, 138101, 0;
...
PROG
(PARI) \\ See link for program code.
{ my(T=AcyclicDigraphsByNonSources(8)); for(n=1, #T, print(T[n])) } \\ Andrew Howroyd, Dec 31 2021
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
N. J. A. Sloane, Oct 18 2006
EXTENSIONS
Zero terms inserted by Andrew Howroyd, Dec 29 2021
STATUS
approved