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

A368165
Expansion of e.g.f. -log(1 + x^2/2 * log(1 - x)).
2
0, 0, 0, 3, 6, 20, 180, 1134, 7980, 78840, 798840, 8620920, 107668440, 1449377280, 20755871136, 323448048000, 5398086002400, 95487623038080, 1796842848654720, 35808112038746880, 751616958775939200, 16600116241063514880, 384905905873078867200
OFFSET
0,4
FORMULA
a(n) = n! * Sum_{k=1..floor(n/3)} (k-1)! * |Stirling1(n-2*k,k)|/(2^k * (n-2*k)!).
MATHEMATICA
With[{nn =30}, CoefficientList[Series[-Log[1+x^2/2 Log[1-x]], {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Jan 22 2024 *)
PROG
(PARI) a(n) = n!*sum(k=1, n\3, (k-1)!*abs(stirling(n-2*k, k, 1))/(2^k*(n-2*k)!));
CROSSREFS
Cf. A351505.
Sequence in context: A019042 A019052 A351492 * A351505 A355994 A375698
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Dec 14 2023
STATUS
approved