login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A122175 Triangle, read by rows, where T(n,k) = C( k*(k+1)/2 + n-k, n-k) for n>=k>=0. 5
1, 1, 1, 1, 2, 1, 1, 3, 4, 1, 1, 4, 10, 7, 1, 1, 5, 20, 28, 11, 1, 1, 6, 35, 84, 66, 16, 1, 1, 7, 56, 210, 286, 136, 22, 1, 1, 8, 84, 462, 1001, 816, 253, 29, 1, 1, 9, 120, 924, 3003, 3876, 2024, 435, 37, 1, 1, 10, 165, 1716, 8008, 15504, 12650, 4495, 703, 46, 1, 1, 11, 220 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Remarkably, column k of the matrix inverse (A121435) equals signed column k of matrix power: A107876^(k*(k+1)/2 + 1).
LINKS
EXAMPLE
Triangle begins:
1;
1, 1;
1, 2, 1;
1, 3, 4, 1;
1, 4, 10, 7, 1;
1, 5, 20, 28, 11, 1;
1, 6, 35, 84, 66, 16, 1;
1, 7, 56, 210, 286, 136, 22, 1;
1, 8, 84, 462, 1001, 816, 253, 29, 1; ...
MATHEMATICA
Table[Binomial[(k(k+1))/2+n-k, n-k], {n, 0, 20}, {k, 0, n}]//Flatten (* Harvey P. Dale, Mar 22 2016 *)
PROG
(PARI) T(n, k)=if(n<k|k<0, 0, binomial(k*(k+1)/2+n-k, n-k))
CROSSREFS
Cf. A121435 (inverse); variants: A098568, A122176, A122177.
Sequence in context: A098447 A175105 A162717 * A073165 A137153 A340814
KEYWORD
nonn,tabl
AUTHOR
Paul D. Hanna, Aug 25 2006
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 2 09:21 EDT 2024. Contains 372179 sequences. (Running on oeis4.)