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.

A255009 Array T(n,k) read by ascending antidiagonals, where T(n,k) is the denominator of polygamma(n, 1) - polygamma(n, k).

Original entry on oeis.org

1, 1, 1, 1, 1, 2, 1, 1, 4, 6, 1, 1, 4, 36, 12, 1, 1, 8, 108, 144, 60, 1, 1, 4, 216, 864, 3600, 20, 1, 1, 8, 324, 3456, 108000, 3600, 140, 1, 1, 8, 1944, 10368, 2160000, 12000, 176400, 280, 1, 1, 16, 1944, 124416, 32400000, 2160000, 4116000
Offset: 0

Views

Author

Jean-François Alcover, Feb 12 2015

Keywords

Comments

See A255008.

Crossrefs

Programs

  • Mathematica
    T[n_, k_] := (-1)^(n+1)*n!*HarmonicNumber[k-1, n+1] // Denominator; Table[T[n-k, k], {n, 0, 10}, {k, 1, n}] // Flatten