A385501 Expansion of e.g.f. (1/x) * Series_Reversion( x * exp(-arctanh(x)) ).
1, 1, 3, 18, 165, 2040, 31815, 599760, 13268745, 337115520, 9674678475, 309554784000, 10927053262125, 421849524096000, 17682153623909775, 799730490214656000, 38820939579369572625, 2013202580708487168000, 111081054630965602057875, 6497703571257963896832000
Offset: 0
Keywords
Programs
-
Mathematica
nmax=20; CoefficientList[(1/x) *InverseSeries[Series[x * Exp[-ArcTanh[x]],{x,0,nmax}],x] ,x]Range[0,nmax-1]! (* Stefano Spezia, Jul 01 2025 *)
-
PARI
a(n) = n!*sum(k=0, n, binomial(n, k)*binomial(n/2+k+1/2, n)/(n+2*k+1));