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.

A224105 Denominators of poly-Cauchy numbers of the second kind hat c_n^(4).

Original entry on oeis.org

1, 16, 1296, 6912, 6480000, 288000, 6223392000, 14224896000, 1440270720000, 64012032000, 562320096307200, 511200087552000, 255506749760021760000, 1455878916011520000, 673863955411046400, 17969705477627904000
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, A223902, A219247, A224103, A224106 (numerators).

Programs

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