Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #8 Mar 22 2022 05:54:44
%S 1,2,1,4,6,2,8,22,20,5,16,66,107,70,14,32,178,428,496,252,42,64,450,
%T 1449,2498,2235,924,132,128,1090,4410,10234,13662,9878,3432,429,256,
%U 2562,12479,36558,66107,71370,43043,12870,1430,512,5890,33512,118588
%N Triangle read by rows: T(n,k) is the number of even trees with 2n edges and jump-length equal to k (0<=k<=n-1).
%C An even tree is an ordered tree in which each vertex has an even outdegree. In the preorder traversal of an ordered tree, any transition from a node at a deeper level to a node on a strictly higher level is called a jump; the positive difference of the levels is called the jump distance; the sum of the jump distances in a given ordered tree is called the jump-length.
%C The Krandick reference considers jumps and jump-length only in full binary trees.
%H W. Krandick, <a href="https://doi.org/10.1016/j.cam.2003.08.018">Trees and jumps and real roots</a>, J. Computational and Applied Math., 162, 2004, 51-55.
%F G.f.: G=G(t,z) is given by (2t-1-t^2+2z-tz)G^3-(2+2tz-2t-5z)G^2+(4z-tz-1)G+z=0.
%F Sum of terms in row n = C(3n,n)/(2n+1) (A001764).
%F T(n,0)=2^(n-1) (A000079).
%F T(n+1,n)=C(2n,n)/(n+1) (A000108, the Catalan numbers).
%F Sum(k*T(n,k),0<=k<=n-1)=A127536(n).
%e Triangle starts:
%e 1;
%e 2,1;
%e 4,6,2;
%e 8,22,20,5;
%e 16,66,107,70,14;
%p eq:=(2*t-1-t^2+2*z-t*z)*G^3-(2+2*t*z-2*t-5*z)*G^2+(4*z-t*z-1)*G+z: g:=RootOf(eq,G): gser:=simplify(series(g,z=0,14)): for n from 1 to 11 do P[n]:=sort(expand(coeff(gser,z,n))) od: for n from 1 to 11 do seq(coeff(P[n],t,j),j=0..n-1) od; # yields sequence in triangular form
%Y Cf. A001764, A000079, A000108, A127536, A127529, A127532.
%K nonn,tabl
%O 1,2
%A _Emeric Deutsch_, Jan 19 2007