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.

A154120 Array read by antidiagonals: T(n,k) = (k+1)^n*(n+k)!.

Original entry on oeis.org

1, 1, 1, 2, 4, 2, 6, 24, 18, 6, 24, 192, 216, 96, 24, 120, 1920, 3240, 1920, 600, 120, 720, 23040, 58320, 46080, 18000, 4320, 720, 5040, 322560, 1224720, 1290240, 630000, 181440, 35280, 5040, 40320, 5160960, 29393280, 41287680, 25200000, 8709120, 1975680
Offset: 0

Views

Author

Omar E. Pol, Jan 05 2009

Keywords

Crossrefs

Programs

  • Maple
    T := proc(n,k) return (k+1)^n*(n+k)!: end: seq(seq(T(n-k,k), k=0..n), n=0..10); # Nathaniel Johnston, May 01 2011