OFFSET
0,2
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).
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..300
Takao Komatsu, Poly-Cauchy numbers with a q parameter, Ramanujan J. 31 (2013), 353-371.
Takao Komatsu, Poly-Cauchy numbers, RIMS Kokyuroku 1806 (2012), p. 42-53.
Takao Komatsu, Poly-Cauchy numbers, Kyushu J. Math. 67 (2013), 143-153.
FORMULA
a(n) = Sum_{k=0..n} (-1)^k * (k+1)^4 * Stirling1(n,k).
From Seiichi Manyama, Apr 15 2025: (Start)
E.g.f.: Sum_{k>=0} (k+1)^4 * (-log(1+x))^k / k!.
E.g.f.: (1/(1+x)) * Sum_{k=0..4} Stirling2(5,k+1) * (-log(1+x))^k.
a(n) = (-1)^n * Sum_{k=0..4} k! * Stirling2(5,k+1) * |Stirling1(n+1,k+1)|. (End)
MATHEMATICA
Table[Sum[StirlingS1[n, k] (-1)^k (k + 1)^4, {k, 0, n}], {n, 0, 30}]
PROG
(PARI) a(n) = sum(k=0, n, stirling(n, k, 1)*(-1)^k*(k+1)^4); \\ Michel Marcus, Nov 14 2015
CROSSREFS
KEYWORD
sign
AUTHOR
Takao Komatsu, Mar 29 2013
STATUS
approved
