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!)
A101371 Triangle read by rows: T(n,k) is the number of noncrossing trees with n edges and k leaves at level 1. 2

%I #20 Nov 07 2017 18:38:27

%S 1,0,1,2,0,1,7,4,0,1,34,14,6,0,1,171,72,21,8,0,1,905,370,114,28,10,0,

%T 1,4952,1995,597,160,35,12,0,1,27802,11064,3278,852,210,42,14,0,1,

%U 159254,62774,18420,4762,1135,264,49,16,0,1,927081,362614,105618,27104,6455,1446,322,56,18,0,1

%N Triangle read by rows: T(n,k) is the number of noncrossing trees with n edges and k leaves at level 1.

%C Row n has n+1 terms. Row sums give A001764. Column k=0 gives A023053.

%H Andrew Howroyd, <a href="/A101371/b101371.txt">Table of n, a(n) for n = 0..1274</a>

%H Naiomi Cameron, J. E. McLeod, <a href="https://cs.uwaterloo.ca/journals/JIS/VOL19/McLeod/mcleod3.html">Returns and Hills on Generalized Dyck Paths</a>, Journal of Integer Sequences, Vol. 19, 2016, #16.6.1.

%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) = Sum_{i=0..n-k} (-1)^i*((k+i+1)/(2n-k-i+1)) binomial(k+i, i) binomial(3n-2k-2i, n-k-i) for 0 <= k <= n.

%F G.f.: g/(1+z*g-t*z*g), where g = 1+z*g^3.

%e Triangle begins:

%e 1;

%e 0, 1;

%e 2, 0, 1;

%e 7, 4, 0, 1;

%e 34, 14, 6, 0, 1;

%e 171, 72, 21, 8, 0, 1;

%e ...

%p T:=proc(n,k) if k<=n then sum((-1)^i*(k+i+1)*binomial(k+i,i)*binomial(3*n-2*k-2*i,n-k-i)/(2*n-k-i+1),i=0..n-k) else 0 fi end: for n from 0 to 10 do seq(T(n,k),k=0..n) od; # yields sequence in triangular form

%t t[n_, k_] := Sum[(-1)^i*(k + i + 1)/(2n - k - i + 1)*Binomial[k + i, i]* Binomial[3n - 2k - 2i, n - k - i], {i, 0, n - k}]; Table[t[n, k], {n, 0, 10}, {k, 0, n}] // Flatten (* _Jean-François Alcover_, Jan 21 2013, after Maple *)

%o (PARI) T(n, k) = sum(i=0, n-k, (-1)^i*(k+i+1)*binomial(k+i, i)*binomial(3*n-2*k-2*i, n-k-i)/(2*n-k-i+1)); \\ _Andrew Howroyd_, Nov 06 2017

%Y Cf. A001764, A023053.

%K nonn,tabl

%O 0,4

%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 April 19 18:58 EDT 2024. Contains 371798 sequences. (Running on oeis4.)