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.

A219247 Denominators of poly-Cauchy numbers of the second kind hat c_n^(2).

Original entry on oeis.org

1, 4, 36, 48, 1800, 240, 35280, 20160, 226800, 50400, 3659040, 665280, 1967565600, 2242240, 129729600, 34594560, 2677989600, 66830400, 1857684628800, 39109150080, 3226504881600, 307286179200, 2333316585600, 1285014931200, 2192556726360000, 25057791158400
Offset: 0

Views

Author

Takao Komatsu, Mar 31 2013

Keywords

Comments

The poly-Cauchy numbers of the second kind hat c_n^(k) can be expressed in terms of the (unsigned) Stirling numbers of the first kind: hat c_n^(k) = (-1)^n*sum(abs(stirling1(n,m))/(m+1)^k, m=0..n).

Crossrefs

Cf. A002790, A223899, A224102 (numerators).

Programs

  • Mathematica
    Table[Denominator[Sum[StirlingS1[n, k] (-1)^k/ (k + 1)^2, {k, 0, n}]], {n, 0, 25}]
  • PARI
    a(n) = denominator(sum(k=0, n, stirling(n, k, 1)*(-1)^k/(k+1)^2)); \\ Michel Marcus, Nov 14 2015