[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A357599
Expansion of e.g.f. sinh(2 * log(1+x)) / 2.
1
0, 1, -1, 6, -30, 180, -1260, 10080, -90720, 907200, -9979200, 119750400, -1556755200, 21794572800, -326918592000, 5230697472000, -88921857024000, 1600593426432000, -30411275102208000, 608225502044160000, -12772735542927360000, 281000181944401920000
OFFSET
0,4
FORMULA
a(n) = Sum_{k=0..floor((n-1)/2)} 4^k * Stirling1(n,2*k+1).
a(n) = (-1)^(n+1) * (n+1)!/4 for n > 2.
PROG
(PARI) my(N=30, x='x+O('x^N)); concat(0, Vec(serlaplace(sinh(2*log(1+x))/2)))
(PARI) a(n) = sum(k=0, (n-1)\2, 4^k*stirling(n, 2*k+1, 1));
(PARI) a(n) = if(n<3, 0^n-(-1)^n, (-1)^(n+1)*(n+1)!/4);
CROSSREFS
KEYWORD
sign
AUTHOR
Seiichi Manyama, Oct 05 2022
STATUS
approved