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

A087727
Triangle read by rows: T(n,k) = (2 * (binomial(n,k)) * (n + 2 * k + 3)!)/((k + 1)! * (k + 2)! * (n + 3)!).
1
1, 1, 5, 1, 14, 42, 1, 28, 210, 462, 1, 48, 660, 3432, 6006, 1, 75, 1650, 15015, 60060, 87516, 1, 110, 3575, 50050, 340340, 1108536, 1385670, 1, 154, 7007, 140140, 1429428, 7759752, 21339318, 23371634, 1, 208, 12740, 346528, 4938024, 39504192, 178474296, 424938800, 414315330
OFFSET
0,3
EXAMPLE
Triangle begins:
1;
1, 5;
1, 14, 42;
1, 28, 210, 462;
...
PROG
(PARI) t(n, k) = (2 * (binomial(n, k)) * (n + 2*k + 3)!)/((k + 1)! * (k + 2)! * (n + 3)!) \\ Michel Marcus, Jun 26 2013
CROSSREFS
Row sums give A087659. Right diagonal gives A005789.
Sequence in context: A370518 A094368 A295574 * A039807 A213590 A185263
KEYWORD
nonn,tabl,easy
AUTHOR
Bill Gosper, Sep 30 2003
EXTENSIONS
More terms from Ray Chandler, Sep 30 2003
STATUS
approved