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

A375237
Expansion of e.g.f. 1 / (1 + x * log(1 - x^2/2))^2.
2
1, 0, 0, 6, 0, 30, 540, 420, 15120, 192780, 623700, 15467760, 187110000, 1394593200, 30353483160, 401350950000, 4974611241600, 105201040744800, 1624218256861200, 27525899782180800, 599214125325816000, 10967831645346576000, 227431647445400798400
OFFSET
0,4
FORMULA
E.g.f.: B(x)^2, where B(x) is the e.g.f. of A375167.
a(n) = n! * Sum_{k=0..floor(n/2)} (n-2*k+1)! * |Stirling1(k,n-2*k)|/(2^k*k!).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1+x*log(1-x^2/2))^2))
(PARI) a(n) = n!*sum(k=0, n\2, (n-2*k+1)!*abs(stirling(k, n-2*k, 1))/(2^k*k!));
CROSSREFS
Sequence in context: A056462 A249869 A209446 * A047762 A186977 A167316
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 23 2024
STATUS
approved