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

A247582
Triangle, read by rows, T(n,k) = (k+1)*Sum_{i=0..n-k} C(k+2*i,i)*C(n-i-1,n-k-i)/(k+i+1).
0
1, 1, 1, 2, 3, 1, 5, 8, 5, 1, 14, 22, 18, 7, 1, 42, 64, 59, 32, 9, 1, 132, 196, 190, 124, 50, 11, 1, 429, 625, 618, 448, 225, 72, 13, 1, 1430, 2055, 2047, 1576, 910, 370, 98, 15, 1, 4862, 6917, 6908, 5510, 3482, 1664, 567, 128, 17, 1, 16796, 23713, 23703, 19322, 12958, 6924, 2814, 824, 162, 19, 1
OFFSET
0,4
FORMULA
G.f.: 1/(1-(1-sqrt(1-4*x))/2-y*(x/(1-x))).
EXAMPLE
1;
1, 1;
2, 3, 1;
5, 8, 5, 1;
14, 22, 18, 7, 1;
42, 64, 59, 32, 9, 1;
PROG
(Maxima) T(n, k):=(k+1)*sum((binomial(k+2*i, i)*binomial(n-i-1, n-k-i))/(k+i+1), i, 0, n-k);
CROSSREFS
Cf. A000108 (first column), A014138.
Sequence in context: A242107 A242108 A238941 * A378432 A359795 A224652
KEYWORD
nonn,tabl
AUTHOR
Vladimir Kruchinin, Apr 21 2015
STATUS
approved