cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A143084 Triangle read by rows: T(n,m) = (n + m)!.

Original entry on oeis.org

1, 1, 2, 2, 6, 24, 6, 24, 120, 720, 24, 120, 720, 5040, 40320, 120, 720, 5040, 40320, 362880, 3628800, 720, 5040, 40320, 362880, 3628800, 39916800, 479001600, 5040, 40320, 362880, 3628800, 39916800, 479001600, 6227020800, 87178291200
Offset: 0

Views

Author

Roger L. Bagula and Gary W. Adamson, Oct 16 2008

Keywords

Examples

			Triangle begins:
    1;
    1,    2;
    2,    6,    24;
    6,   24,   120,    720;
   24,  120,   720,   5040,   40320;
  120,  720,  5040,  40320,  362880,  3628800;
  720, 5040, 40320, 362880, 3628800, 39916800, 479001600;
  ...
		

Crossrefs

Column m=0 gives A000142.
T(2n,n) gives A100732.
Main diagonal gives A010050.
Row sums give A374574.

Programs

  • Mathematica
    t[n_, m_] := (n + m)!; Table[Table[t[n, m], {m, 0, n}], {n, 0, 10}]; Flatten[%]

Formula

T(n,m) = (n + m)!.

Extensions

Offset changed to 0 by Jinyuan Wang, Dec 19 2020