OFFSET
0,5
COMMENTS
The triangle may be regarded as a generalization of the triangle A088617.
A088617(n,k) = binomial(n+k,n-k)*(2*k)$/(k+1);
T(n,k) = binomial(n+k,n-k)*(k)$ /(floor(k/2)+1).
Here n$ denotes the swinging factorial A056040(n). As A088617 is a decomposition of the large Schroeder numbers A006318, a combinatorial interpretation of T(n,k) in terms of lattice paths can be expected.
T(n,n) = A057977(n) which can be seen as extended Catalan numbers.
LINKS
Peter Luschny, The lost Catalan numbers.
EXAMPLE
[0] 1
[1] 1, 1
[2] 1, 3, 1
[3] 1, 6, 5, 3
[4] 1, 10, 15, 21, 2
[5] 1, 15, 35, 84, 18, 10
[6] 1, 21, 70, 252, 90, 110, 5
[7] 1, 28, 126, 630, 330, 660, 65, 35
MAPLE
MATHEMATICA
Flatten[Table[Binomial[n+k, n-k] k!/(Floor[k/2]!Floor[(k+2)/2]!), {n, 0, 10}, {k, 0, n}]] (* Harvey P. Dale, May 05 2012 *)
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Peter Luschny, May 24 2011
STATUS
approved