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.

A123316 Triangle read by rows: T(n,k)=(k+1)*n!/2 (1<=k<=n).

Original entry on oeis.org

1, 2, 3, 6, 9, 12, 24, 36, 48, 60, 120, 180, 240, 300, 360, 720, 1080, 1440, 1800, 2160, 2520, 5040, 7560, 10080, 12600, 15120, 17640, 20160, 40320, 60480, 80640, 100800, 120960, 141120, 161280, 181440, 362880, 544320, 725760, 907200, 1088640
Offset: 1

Views

Author

Roger L. Bagula, Nov 09 2006

Keywords

Examples

			Triangle begins:
{1},
{2, 3},
{6, 9, 12},
{24, 36, 48, 60},
{120, 180, 240, 300, 360},
{720, 1080, 1440, 1800, 2160, 2520},
{5040, 7560, 10080, 12600, 15120, 17640, 20160}
		

Crossrefs

Cf. A051683.

Programs

  • Maple
    T:=(n,k)->(k+1)*n!/2: for n from 1 to 10 do seq(T(n,k),k=1..n) od; # yields sequence in triangular form
  • Mathematica
    t[n_, m_] := (m + 1)*n!/2; a = Table[Table[t[n, m], {m, 1, n}], {n, 1, 10}]; Flatten[a]

Extensions

Edited by N. J. A. Sloane, Dec 03 2006