login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 60th year, we have over 367,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Other ways to Give
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A174696 Triangle T(n, k) = n!*(1/k)^2*(binomial(n-1, k-1)*binomial(n, k-1))^2 - n! + 1, read by rows. 3
1, 1, 1, 1, 49, 1, 1, 841, 841, 1, 1, 11881, 47881, 11881, 1, 1, 161281, 1799281, 1799281, 161281, 1, 1, 2217601, 55560961, 154344961, 55560961, 2217601, 1, 1, 31570561, 1548892801, 9680791681, 9680791681, 1548892801, 31570561, 1, 1, 469929601, 40967337601, 501853968001, 1129171881601, 501853968001, 40967337601, 469929601, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,5
LINKS
FORMULA
T(n, k) = n!*(1/k)^2*(binomial(n-1, k-1)*binomial(n, k-1))^2 - n! + 1.
From G. C. Greubel, Feb 09 2021: (Start)
T(n, k) = n! * A174158(n, k) - n! + 1.
Sum_{k=1..n} T(n,k) = n! * Hypergeometric4F3([-n, -n, 1-n, 1-n], [1, 2, 2], 1) - n*(n! - 1) = n! * A319743(n) - n*(n! - 1). (End)
EXAMPLE
Triangle begins as:
1;
1, 1;
1, 49, 1;
1, 841, 841, 1;
1, 11881, 47881, 11881, 1;
1, 161281, 1799281, 1799281, 161281, 1;
1, 2217601, 55560961, 154344961, 55560961, 2217601, 1;
1, 31570561, 1548892801, 9680791681, 9680791681, 1548892801, 31570561, 1;
MATHEMATICA
T[n_, m_]:= n!*(1/k)^2*(Binomial[n-1, k-1]*Binomial[n, k-1])^2 - n! + 1;
Table[T[n, k], {n, 12}, {k, n}]//Flatten
PROG
(Sage)
def A174696(n, k): return (factorial(n)/k^2)*(binomial(n-1, k-1)*binomial(n, k-1))^2 - factorial(n) + 1
flatten([[A174696(n, k) for k in (1..n)] for n in (1..12)]) # G. C. Greubel, Feb 09 2021
(Magma)
A174696:= func< n, k | (Factorial(n)/k^2)*(Binomial(n-1, k-1)*Binomial(n, k-1))^2 - Factorial(n) + 1 >;
[A174696(n, k): k in [1..n], n in [1..12]]; // G. C. Greubel, Feb 09 2021
CROSSREFS
Sequence in context: A115480 A214953 A005071 * A203506 A254617 A012120
KEYWORD
nonn,tabl,easy
AUTHOR
Roger L. Bagula, Mar 27 2010
EXTENSIONS
Edited by G. C. Greubel, Feb 09 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 December 2 23:17 EST 2023. Contains 367526 sequences. (Running on oeis4.)