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

A375698
Expansion of e.g.f. 1 / sqrt(1 + x^2 * log(1 - x)).
1
1, 0, 0, 3, 6, 20, 360, 2394, 17220, 252720, 2963520, 34525260, 552027960, 8860952880, 142907532768, 2682870913800, 53297669552400, 1086135012144000, 24087251436249600, 566843973576536880, 13834256829134364000, 357412359616922433600, 9723652519748883408000
OFFSET
0,4
FORMULA
a(n) = n! * Sum_{k=0..floor(n/3)} A001147(k) * |Stirling1(n-2*k,k)|/(2^k*(n-2*k)!).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/sqrt(1+x^2*log(1-x))))
(PARI) a001147(n) = prod(k=0, n-1, 2*k+1);
a(n) = n!*sum(k=0, n\3, a001147(k)*abs(stirling(n-2*k, k, 1))/(2^k*(n-2*k)!));
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 25 2024
STATUS
approved