login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A101372 Triangle read by rows: T(n,k) is number of leaves at level k in all noncrossing rooted trees on n+1 nodes. 0

%I #10 Oct 26 2015 12:57:56

%S 1,2,2,7,10,4,30,50,32,8,143,260,208,88,16,728,1400,1280,704,224,32,

%T 3876,7752,7752,5016,2128,544,64,21318,43890,46816,33880,17248,5984,

%U 1280,128,120175,253000,283360,222640,128800,54400,16000,2944,256

%N Triangle read by rows: T(n,k) is number of leaves at level k in all noncrossing rooted trees on n+1 nodes.

%C Row n has n terms. Row sums yield A045721. Column 1 is A006013.

%H P. Flajolet and M. Noy, <a href="http://dx.doi.org/10.1016/S0012-365X(98)00372-0">Analytic combinatorics of non-crossing configurations</a>, Discrete Math., 204, 203-229, 1999.

%H M. Noy, <a href="http://dx.doi.org/10.1016/S0012-365X(97)00121-0">Enumeration of noncrossing trees on a circle</a>, Discrete Math., 180, 301-313, 1998.

%F T(n, k) = 2^(k-1)*[(3k-1)/(2n+k-1)]binomial(3n-2, n-k) (1<=k<=n).

%F G.f.: t*z*g^2/(1-2*t*z*g^3), where g = 1 + z*g^3 is the g.f. of the ternary numbers (A001764).

%e Triangle begins:

%e 1;

%e 2,2;

%e 7,10,4;

%e 30,50,32,8;

%e 143,260,208,88,16;

%e ...

%p T:=(n,k)->2^(k-1)*(3*k-1)*binomial(3*n-2,n-k)/(2*n+k-1): for n from 1 to 10 do seq(T(n,k),k=1..n) od; # yields triangle in triangular form

%t Flatten[Table[2^(k-1) ((3k-1)/(2n+k-1))Binomial[3n-2,n-k],{n,10},{k,n}]] (* _Harvey P. Dale_, Feb 10 2015 *)

%Y Cf. A045721, A006013.

%K nonn,tabl

%O 1,2

%A _Emeric Deutsch_, Jan 14 2005

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 22 04:43 EDT 2024. Contains 375356 sequences. (Running on oeis4.)