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!)
A176078 Triangle, read by rows, T(n, k) = (2*n)!/((n-k)! * k!)^2 - (2*n)!/(n!)^2 + 1. 1
1, 1, 1, 1, 19, 1, 1, 161, 161, 1, 1, 1051, 2451, 1051, 1, 1, 6049, 24949, 24949, 6049, 1, 1, 32341, 206977, 368677, 206977, 32341, 1, 1, 164737, 1510081, 4200769, 4200769, 1510081, 164737, 1, 1, 810811, 10077211, 40347451, 63050131, 40347451, 10077211, 810811, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Row sums are: {1, 2, 21, 324, 4555, 61998, 847315, 11751176, 165521079, 2363418210, 34132747231, ...}.
LINKS
FORMULA
T(n, k) = (2*n)!/((n-k)! * k!)^2 - (2*n)!/(n!)^2 + 1.
T(n, k) = binomial(2*n,n)*( binomial(n,k)^2 - 1) + 1. - G. C. Greubel, Nov 27 2019
EXAMPLE
Triangle begins as:
1;
1, 1;
1, 19, 1;
1, 161, 161, 1;
1, 1051, 2451, 1051, 1;
1, 6049, 24949, 24949, 6049, 1;
1, 32341, 206977, 368677, 206977, 32341, 1;
1, 164737, 1510081, 4200769, 4200769, 1510081, 164737, 1;
MAPLE
b:=binomial; T(n, k):=b(2*n, n)*(b(n, k)^2 -1)+1; seq(seq(T(n, k), k=0..n), n=0..10); # G. C. Greubel, Nov 27 2019
MATHEMATICA
T[n_, k_] = (2*n)!/((n-k)!*k!)^2 - (2*n)!/(n!)^2 + 1; Table[T[n, k], {n, 0, 10}, (k, 0, n)]//Flatten
PROG
(PARI) b=binomial; T(n, k) = b(2*n, n)*(b(n, k)^2 -1)+1; \\ G. C. Greubel, Nov 27 2019
(Magma) B:=Binomial; [B(2*n, n)*(B(n, k)^2 -1)+1: k in [0..n], n in [0..10]]; // G. C. Greubel, Nov 27 2019
(Sage) b=binomial; [[b(2*n, n)*(b(n, k)^2 -1)+1 for k in (0..n)] for n in (0..10)] # G. C. Greubel, Nov 27 2019
(GAP) B:=Binomial;; Flat(List([0..10], n-> List([0..n], k-> B(2*n, n)*(B(n, k)^2 -1)+1 ))); # G. C. Greubel, Nov 27 2019
CROSSREFS
Sequence in context: A040361 A174097 A174040 * A022182 A015145 A040369
KEYWORD
nonn,tabl
AUTHOR
Roger L. Bagula, Apr 08 2010
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 29 15:34 EDT 2024. Contains 374734 sequences. (Running on oeis4.)