A158483 Triangle read by rows: T(n,k) = (4k+3)/(n+2k+2)*binomial(2n,n+2k+1).
0, 1, 3, 9, 1, 28, 7, 90, 35, 1, 297, 154, 11, 1001, 637, 77, 1, 3432, 2548, 440, 15, 11934, 9996, 2244, 135, 1, 41990, 38760, 10659, 950, 19, 149226, 149226, 48279, 5775, 209, 1, 534888, 572033, 211508, 31878, 1748, 23, 1931540, 2187185, 904475, 164450
Offset: 0
Examples
Triangle begins ================================== n\k|.....0.....1.....2.....3.....4 ================================== .0.|.....0 .1.|.....1 .2.|.....3 .3.|.....9.....1 .4.|....28.....7 .5.|....90....35.....1 .6.|...297...154....11 .7.|..1001...637....77.....1 .8.|..3432..2548...440....15 .9.|.11934..9996..2244...135.....1
Links
- Zoran Sunic, Self describing sequences and the Catalan family tree, Elect. J. Combin., 10 (No. 1, 2003).
Crossrefs
Programs
-
Maple
with(combinat): T:=(n,k) -> (4k+3)/(n+2k+2)*binomial(2n,n+2k+1): for n from 0 to 13 do seq(T(n,k),k = 0..6); end do;
Comments