OFFSET
3,2
REFERENCES
R. W. Robinson, Numerical implementation of graph counting algorithms, AGRC Grant, Math. Dept., Univ. Newcastle, Australia, 1977.
LINKS
Andrew Howroyd, Rows 3 through 20, flattened (first 15 rows from R. W. Robinson)
EXAMPLE
Triangle begins (n >= 3, k >= n):
n
3 | 1;
4 | 3, 6, 1;
5 | 12, 70, 100, 45, 10, 1;
6 | 60, 720, 2445, 3535, 2697, 1335, 455, 105, 15, 1;
...
MATHEMATICA
row[n_] := row[n] = Module[{s}, s = (n-1)!*Log[x/InverseSeries[#, x]& @ (x*D[#, x]& @ Log[Sum[(1+y)^Binomial[k, 2]*x^k/k!, {k, 0, n}] + O[x]^(n+1) ])]; CoefficientList[Coefficient[s, x, n-1]/y^n, y]];
Table[row[n], {n, 3, 15}] // Flatten (* Jean-François Alcover, Aug 13 2019, after Andrew Howroyd *)
PROG
(PARI) row(n)={Vecrev((n-1)!*polcoef(log(x/serreverse(x*deriv(log(sum(k=0, n, (1 + y)^binomial(k, 2) * x^k / k!) + O(x*x^n))))), n-1)/y^n)}
{ for(n=3, 7, print(row(n))) } \\ Andrew Howroyd, Nov 30 2018
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
N. J. A. Sloane, Nov 13 2006
STATUS
approved