The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A126445 Triangle, read by rows, where T(n,k) = C(C(n+2,3) - C(k+2,3), n-k) for n >= k >= 0. 10
1, 1, 1, 6, 3, 1, 120, 36, 6, 1, 4845, 969, 120, 10, 1, 324632, 46376, 4495, 300, 15, 1, 32468436, 3478761, 270725, 15180, 630, 21, 1, 4529365776, 377447148, 24040016, 1150626, 41664, 1176, 28, 1, 840261910995, 56017460733, 2967205528, 122391522, 3921225, 98770, 2016, 36, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
LINKS
FORMULA
T(n,k) = C(n*(n+1)*(n+2)/3! - k*(k+1)*(k+2)/3!, n-k) for n >= k >= 0.
EXAMPLE
Formula: T(n,k) = C(C(n+2,3) - C(k+2,3), n-k) is illustrated by:
T(n=4,k=1) = C(C(6,3) - C(3,3), n-k) = C(19,3) = 969;
T(n=4,k=2) = C(C(6,3) - C(4,3), n-k) = C(16,2) = 120;
T(n=5,k=2) = C(C(7,3) - C(4,3), n-k) = C(31,3) = 4495.
Triangle begins:
1;
1, 1;
6, 3, 1;
120, 36, 6, 1;
4845, 969, 120, 10, 1;
324632, 46376, 4495, 300, 15, 1;
32468436, 3478761, 270725, 15180, 630, 21, 1;
4529365776, 377447148, 24040016, 1150626, 41664, 1176, 28, 1;
MATHEMATICA
T[n_, k_]:= Binomial[Binomial[n+2, 3] - Binomial[k+2, 3], n-k];
Table[T[n, k], {n, 0, 12}, {k, 0, n}]//Flatten (* G. C. Greubel, Feb 18 2022 *)
PROG
(PARI) T(n, k)=binomial(n*(n+1)*(n+2)/3!-k*(k+1)*(k+2)/3!, n-k)
(Sage)
def A126445(n, k): return binomial(binomial(n+2, 3) - binomial(k+2, 3), n-k)
flatten([[A126445(n, k) for k in (0..n)] for n in (0..12)]) # G. C. Greubel, Feb 18 2022
CROSSREFS
Columns: A126446, A126447, A126448, A126449 (row sums).
Sequence in context: A182227 A108451 A122178 * A277435 A033326 A068996
KEYWORD
nonn,tabl
AUTHOR
Paul D. Hanna, Dec 27 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 14 23:22 EDT 2024. Contains 372535 sequences. (Running on oeis4.)