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!)
A143983 Triangle T(n,k), n>=1, 1<=k<=n, read by rows, where sequence a_k of column k has a_k(0)=1, followed by (k-1)-fold 0 and a_k(n) shifts k places down under binomial transform. 6
1, 2, 1, 5, 1, 1, 15, 2, 1, 1, 52, 5, 1, 1, 1, 203, 13, 2, 1, 1, 1, 877, 36, 6, 1, 1, 1, 1, 4140, 109, 17, 2, 1, 1, 1, 1, 21147, 359, 44, 7, 1, 1, 1, 1, 1, 115975, 1266, 112, 23, 2, 1, 1, 1, 1, 1, 678570, 4731, 304, 65, 8, 1, 1, 1, 1, 1, 1, 4213597, 18657, 918, 165, 30, 2, 1, 1, 1, 1, 1, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The matrix inverse starts:
1;
-2, 1;
-3, -1, 1;
-8, -1, -1, 1;
-31, -3, 0, -1, 1;
-132, -7, -1, 0, -1, 1;
-616, -19, -4, 0, 0, -1, 1; - R. J. Mathar, Mar 22 2013
LINKS
N. J. A. Sloane, Transforms
FORMULA
T(n,k) = Sum_{j=0..n-k} C(n-k,j)*T(j,k) if n>=k, else T(n,k) = 1 if n=1, else T(n,k) = 0.
EXAMPLE
T(5,2) = 5, because [1,3,3,1] * [1,0,1,1] = 5.
Triangle begins:
: 1;
: 2, 1;
: 5, 1, 1;
: 15, 2, 1, 1;
: 52, 5, 1, 1, 1;
: 203, 13, 2, 1, 1, 1;
: 877, 36, 6, 1, 1, 1, 1;
: 4140, 109, 17, 2, 1, 1, 1, 1;
: 21147, 359, 44, 7, 1, 1, 1, 1, 1;
: 115975, 1266, 112, 23, 2, 1, 1, 1, 1, 1;
MAPLE
T:= proc(n, k) option remember; `if`(n<k, `if`(n=0, 1, 0),
add(binomial(n-k, j) *T(j, k), j=0..n-k))
end:
seq(seq(T(n, k), k=1..n), n=1..14);
MATHEMATICA
t[n_, k_] := t[n, k] = If[n < k, If[n == 0, 1, 0], Sum[Binomial[n-k, j]*t[j, k], {j, 0, n-k}]]; Table[Table[t[n, k], {k, 1, n}], {n, 1, 13}] // Flatten (* Jean-François Alcover, Dec 18 2013, translated from Maple *)
CROSSREFS
Columns 1-6 give: A000110, A000994, A000996, A010748, A010749, A010750.
Cf. A007318.
Sequence in context: A206563 A299779 A323954 * A282988 A113767 A352566
KEYWORD
eigen,nonn,tabl
AUTHOR
Alois P. Heinz, Sep 06 2008
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 July 31 09:35 EDT 2024. Contains 374779 sequences. (Running on oeis4.)