OFFSET
0,3
LINKS
INRIA Algorithms Project, Encyclopedia of Combinatorial Structures 765
FORMULA
E.g.f.: log(-1/(-1+log(-1/(-1+x))*x)).
E.g.f.: -log(1 + x*log(1-x)). - Arkadiusz Wesolowski, Feb 21 2013
a(n) ~ (n-1)! * r^n, where r = 1.349976485401125... is the root of the equation (r-1)*exp(r) = r. - Vaclav Kotesovec, Oct 01 2013
a(n) = n! * Sum_{k=1..floor(n/2)}(k-1)! * |Stirling1(n-k,k)|/(n-k)!. - Seiichi Manyama, Dec 13 2023
MAPLE
spec := [S, {B=Prod(C, Z), C=Cycle(Z), S=Cycle(B)}, labeled]: seq(combstruct[count](spec, size=n), n=0..20);
MATHEMATICA
nn = 25; Range[0, nn]! CoefficientList[Series[Log[-1/(-1 + Log[-1/(-1 + x)]*x)], {x, 0, nn}], x] (* T. D. Noe, Feb 21 2013 *)
PROG
(PARI)
N = 66; x = 'x + O('x^N);
egf = -log(1 + x*log(1-x)) + 'c0;
gf = serlaplace(egf);
v = Vec(gf); v[1]-='c0; v
/* Joerg Arndt, Feb 21 2013 */
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
encyclopedia(AT)pommard.inria.fr, Jan 25 2000
STATUS
approved