OFFSET
0,3
COMMENTS
Row n has 1+floor(n/2) terms. T(n,0) = A000045(n+1) (the Fibonacci numbers). T(2n,n) = binomial(2n,n)/(n+1) = A000108(n) (the Catalan numbers). Row sums yield A118720. Column k has g.f. = c(k)z^(2k)/(1-z-z^2)^(2k+1), where c(k) = binomial(2k,k)/(k+1) are the Catalan numbers; accordingly, T(n,1) = A001628(n-2), T(n,2) = 2*A001873(n-4), T(n,3) = 5*A001875(n-6). Sum_{k>=0} k*T(n,k) = A106050(n+1).
FORMULA
G.f.: G = G(t,z) satisfies G = 1 + zG + z^2*G + tz^2*G^2 (see explicit expression at the Maple program).
EXAMPLE
Triangle starts:
1;
1;
2, 1;
3, 3;
5, 9, 2;
8, 22, 10;
13, 51, 40, 5;
T(3,1)=3 because we have hUD, UhD and UDh.
MAPLE
G:=((1-z-z^2-sqrt(1-2*z-z^2+2*z^3+z^4-4*t*z^2))*1/2)/(t*z^2): Gser:=simplify(series(G, z = 0, 17)): for n from 0 to 13 do P[n]:=sort(coeff(Gser, z, n)) end do: for n from 0 to 13 do seq(coeff(P[n], t, j), j=0..floor((1/2)*n)) end do; # yields sequence in triangular form
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Emeric Deutsch, Sep 03 2007
STATUS
approved