OFFSET
1,4
COMMENTS
LINKS
Gi-Sang Cheon and Louis W. Shapiro, Protected points in ordered trees, Appl. Math. Letters, 21, 2008, 516-520.
FORMULA
G.f.: G-1, where G=G(t,z) satisfies G = 1/(1-zG) + z(t-1)(G-1)/(1+z-zG).
EXAMPLE
T(3,2)=1 because among the five ordered trees with 3 edges only the path tree has 2 vertices at least two edges away from the leaf.
Triangle starts:
1;
1,1;
3,1,1;
6,6,1,1;
17,13,10,1,1;
43,50,22,15,1,1;
MAPLE
eq:=G-1/(1-z*G)-z*(t-1)*(G-1)/(1+z-z*G): G:=RootOf(eq, G): Gser:=simplify(series(G-1, z=0, 13)): for n to 11 do P[n]:=sort(expand(coeff(Gser, z, n))) end do: for n to 11 do seq(coeff(P[n], t, j), j=0..n-1) end do; # yields sequence in triangular form
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Emeric Deutsch, Aug 20 2008
STATUS
approved