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”).

A375989
Expansion of e.g.f. (1 + 3 * log(1 - x))^(5/3).
1
1, -5, 5, 30, 180, 1410, 14790, 203880, 3559560, 75659760, 1893764160, 54430097760, 1763357958000, 63501756552720, 2514747808468080, 108572621062573440, 5074353268651935360, 255201626973301102080, 13740802156877800538880, 788580746923723472839680
OFFSET
0,2
FORMULA
a(n) = Sum_{k=0..n} (Product_{j=0..k-1} (3*j-5)) * |Stirling1(n,k)|.
PROG
(PARI) a(n) = sum(k=0, n, prod(j=0, k-1, 3*j-5)*abs(stirling(n, k, 1)));
CROSSREFS
KEYWORD
sign,easy
AUTHOR
Seiichi Manyama, Sep 05 2024
STATUS
approved