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!)
A367270 Triangle read by rows. T(n, k) = binomial(n, k)*binomial(n - 1, n - k - 1). 3
1, 1, 0, 1, 2, 0, 1, 6, 3, 0, 1, 12, 18, 4, 0, 1, 20, 60, 40, 5, 0, 1, 30, 150, 200, 75, 6, 0, 1, 42, 315, 700, 525, 126, 7, 0, 1, 56, 588, 1960, 2450, 1176, 196, 8, 0, 1, 72, 1008, 4704, 8820, 7056, 2352, 288, 9, 0, 1, 90, 1620, 10080, 26460, 31752, 17640, 4320, 405, 10, 0 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
For 0< k < n: T(n, k) = ((n - k) / n)*binomial(n, k)^2.
EXAMPLE
Triangle T(n, k) begins:
[0] 1;
[1] 1, 0;
[2] 1, 2, 0;
[3] 1, 6, 3, 0;
[4] 1, 12, 18, 4, 0;
[5] 1, 20, 60, 40, 5, 0;
[6] 1, 30, 150, 200, 75, 6, 0;
[7] 1, 42, 315, 700, 525, 126, 7, 0;
[8] 1, 56, 588, 1960, 2450, 1176, 196, 8, 0;
[9] 1, 72, 1008, 4704, 8820, 7056, 2352, 288, 9, 0;
MAPLE
T := (n, k) -> binomial(n, k) * binomial(n - 1, n - k - 1):
# Or:
T := (n, k) -> if k=0 then 1 elif k=n then 0 else ((n-k)/n)*binomial(n, k)^2 fi:
seq(seq(T(n, k), k = 0..n), n = 0..9);
MATHEMATICA
A367270[n_, k_]:=Binomial[n, k]Binomial[n-1, n-k-1];
Table[A367270[n, k], {n, 0, 15}, {k, 0, n}] (* Paolo Xausa, Nov 29 2023 *)
CROSSREFS
Cf. A088218 (row sums), A367267 (row reversed).
Sequence in context: A367795 A343825 A339031 * A365770 A059299 A332673
KEYWORD
nonn,tabl
AUTHOR
Peter Luschny, Nov 11 2023
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 June 5 01:34 EDT 2024. Contains 373102 sequences. (Running on oeis4.)