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!)
A136535 A128064 * A001263. 1
1, 1, 2, 1, 7, 3, 1, 15, 21, 4, 1, 26, 76, 46, 5, 1, 40, 200, 250, 85, 6, 1, 57, 435, 925, 645, 141, 7, 1, 77, 833, 2695, 3185, 1421, 217, 8, 1, 100, 1456, 6664, 11956, 9016, 2800, 316, 9, 1, 126, 2376, 14616, 37044, 42336, 22176, 5076, 441, 10 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Row sums give A076540.
LINKS
EXAMPLE
First few rows of the triangle are:
1;
1, 2;
1, 7, 3;
1, 15, 21, 4;
1, 26, 76, 46, 5;
1, 40, 200, 250, 85, 6;
1, 57, 435, 925, 645, 141, 7;
...
PROG
(PARI) T4(n, k) = sum(j=k, n, binomial(n, j)*binomial(j, k)*(-1)^(j-k)*(j+1));
T3(n, k) = binomial(n, k)*binomial(n-1, k-1) - binomial(n, k-1)*binomial(n-1, k);
N=10; matrix(N, N, n, k, T4(n-1, k-1))*matrix(N, N, n, k, T3(n, k)) \\ Michel Marcus, Oct 11 2021
CROSSREFS
Sequence in context: A295734 A197328 A352247 * A320579 A091370 A125697
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Jan 04 2008
EXTENSIONS
a(18) corrected by Georg Fischer, Oct 10 2021
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 April 25 06:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)