login

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”).

A256640
Triangle read by rows: T(n,k) = Sum_{i=n-k..n} C(k-1,n-i)*C(i,n-k)*C(2*i,i)/(i+1).
0
1, 1, 1, 2, 4, 3, 5, 15, 19, 10, 14, 56, 99, 90, 36, 42, 210, 476, 603, 427, 137, 132, 792, 2190, 3536, 3507, 2032, 543, 429, 3003, 9801, 19185, 24251, 19800, 9702, 2219, 1430, 11440, 43043, 98890, 151295, 157716, 109520, 46472, 9285, 4862, 43758
OFFSET
0,4
FORMULA
G.f.: (1-sqrt(1-4*(x/(1-x)+y)))/(2*(x/(1-x)+y)).
EXAMPLE
1;
1, 1;
2, 4, 3;
5, 15, 19, 10;
14, 56, 99, 90, 36;
42, 210, 476, 603, 427, 137;
MATHEMATICA
T[n_, k_] := SeriesCoefficient[1-Sqrt[1-4*(x/(1-x)+y)]/(2*(x/(1-x)+y)), {x, 0, n}, {y, 0, k}]; Table[T[n-k, k], {n, 0, 9}, {k, n, 0, -1}] // Flatten (* Jean-François Alcover, Apr 13 2015 *)
PROG
(Maxima)
T(n, m):=sum((binomial(m-1, n-i)*binomial(i, n-m)*binomial(2*i, i))/(i+1), i, n-m, n);
CROSSREFS
Cf. A000108 (first column), A002212 (right diagonal).
Sequence in context: A073944 A072937 A343312 * A239466 A129509 A375907
KEYWORD
nonn,tabl
AUTHOR
Vladimir Kruchinin, Apr 10 2015
STATUS
approved