A209518 Triangle by rows, reversal of A104712.
1, 1, 3, 1, 4, 6, 1, 5, 10, 10, 1, 6, 15, 20, 15, 1, 7, 21, 35, 35, 21, 1, 8, 28, 56, 70, 56, 28, 1, 9, 36, 84, 126, 126, 84, 36, 1, 10, 45, 120, 210, 252, 210, 120, 45, 1, 11, 55, 165, 330, 462, 462, 330, 165, 55
Offset: 0
Examples
First few rows of the triangle = 1; 1, 3; 1, 4, 6; 1, 5, 10, 10; 1, 6, 15, 20, 15; 1, 7, 21, 35, 35, 21; 1, 8, 28, 56, 70, 56, 28; 1, 9, 36, 84, 126, 126, 84, 36; 1, 10, 45, 120, 210, 252, 210, 120, 45; 1, 11, 55, 165, 330, 462, 462, 30, 165, 55; ...
Links
- Hector Blandin and Rafael Diaz, Compositional Bernoulli numbers, arXiv:0708.0809 [math.CO], 2007-2008, Page 7, 2nd table is identical to A006569/A006568.
Programs
-
Mathematica
Table[Binomial[n+2, k+2], {n, 0, 9}, {k, n , 0, -1}] // Flatten (* Jean-François Alcover, Aug 08 2018 *)
Formula
Doubly beheaded variant of Pascal's triangle in which two rightmost diagonals are deleted.
T(n,k)=T(n-1,k)+3*T(n-1,k-1)-2*T(n-2,k-1)-3*T(n-2,k-2)+T(n-3,k-2)+T(n-3,k-3), T(0,0)=1, T(n,k)=0 if k<0 or if k>n. - Philippe Deléham, Jan 11 2014
Comments