OFFSET
5,1
COMMENTS
R is early confluent iff (xRy and xRz) implies (yRz or zRy) for all x, y, z.
REFERENCES
A. P. Heinz (1990). Analyse der Grenzen und Möglichkeiten schneller Tableauoptimierung. PhD Thesis, Albert-Ludwigs-Universität Freiburg, Freiburg i. Br., Germany.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 5..200
FORMULA
MAPLE
t:= proc(k) option remember; `if`(k<0, 0,
unapply(exp(add(x^m/m! *t(k-m)(x), m=1..k)), x))
end:
egf:= t(5)(x)-t(4)(x):
a:= n-> n!* coeff(series(egf, x, n+1), x, n):
seq(a(n), n=5..20);
MATHEMATICA
m = 5; t[k_] := t[k] = If[k<0, 0, Function[x, Exp[Sum[x^m/m!*t[k-m][x], {m, 1, k}]]]] ; egf = t[m][x]-t[m-1][x]; a[n_] := n!*Coefficient[Series[egf, {x, 0, n+1}], x, n]; Table[a[n], {n, m, 20}] (* Jean-François Alcover, Feb 14 2014, after Maple *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Oct 20 2012
STATUS
approved