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!)
A176080 Triangle, read by rows, T(n, k) = Sum_{j=0..k} (n+k)!/((n-j)!*(k-j)!*j!). 1
1, 1, 4, 1, 9, 42, 1, 16, 130, 680, 1, 25, 315, 2555, 14630, 1, 36, 651, 7616, 63126, 389592, 1, 49, 1204, 19236, 219450, 1871562, 12314148, 1, 64, 2052, 42960, 647130, 7346592, 64578228, 449324304, 1, 81, 3285, 87285, 1679535, 24557247, 280146867, 2537661555, 18555052230 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Row sums are: {1, 5, 52, 827, 17526, 461022, 14425650, 521941331, 21399188086, 979196554118, 49420150452256, ...}.
LINKS
FORMULA
T(n, k) = Sum_{j=0..k} (n+k)!/((n-j)!*(k-j)!*j!).
T(n, k) = binomial(n+k,n)*2F0(-n, -k; -; 1), where 2F0 is a hypergeometric function. - G. C. Greubel, Nov 27 2019
EXAMPLE
Triangle begins as:
1;
1, 4;
1, 9, 42;
1, 16, 130, 680;
1, 25, 315, 2555, 14630;
1, 36, 651, 7616, 63126, 389592;
1, 49, 1204, 19236, 219450, 1871562, 12314148;
1, 64, 2052, 42960, 647130, 7346592, 64578228, 449324304;
MAPLE
b:=binomial; T(n, k):=b(n+k, n)*add(j!*b(n, j)*b(k, j), j=0..k); seq(seq(T(n, k), k=0..n), n=0..10); # G. C. Greubel, Nov 27 2019
MATHEMATICA
T[n_, k_]:= Sum[(n+k)!/((n-j)!*(k-j)!*j!), {j, 0, k}]; Table[T[n, k], {n, 0, 10}, {k, 0, n}]//Flatten
Table[Binomial[n+k, n]*HypergeometricPFQ[{-n, -k}, {}, 1], {n, 0, 10}, {k, 0, n}]//Flatten (* G. C. Greubel, Nov 27 2019 *)
PROG
(PARI) b=binomial; T(n, k) = b(n+k, n)*sum(j=0, k, j!*b(n, j)*b(k, j)); \\ G. C. Greubel, Nov 27 2019
(Magma) B:=Binomial; [B(n+k, n)*(&+[Factorial(j)*B(n, j)*B(k, j): j in [0..k]]) : k in [0..n], n in [0..10]]; // G. C. Greubel, Nov 27 2019
(Sage) b=binomial; [[b(n+k, n)*sum(factorial(j)*b(n, j)*b(k, j) for j in (0..k)) 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(n+k, n)*Sum( [0..k], j-> Factorial(j)*B(n, j)*B(k, j)) ))); # G. C. Greubel, Nov 27 2019
CROSSREFS
Sequence in context: A028941 A364109 A348180 * A328302 A346748 A348184
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 June 6 19:16 EDT 2024. Contains 373134 sequences. (Running on oeis4.)