OFFSET
1,2
COMMENTS
"Dotted" means having a distinguished element. - N. J. A. Sloane, Feb 06 2012
Equivalently, the number of different connected, dotted and labeled trivalent diagrams of size n.
LINKS
S. A. Vidal, Sur la Classification et le Dénombrement des Sous-groupes du Groupe Modulaire et de leurs Classes de Conjugaison, (in French), arXiv:math/0702223 [math.CO], 2006.
FORMULA
MAPLE
N := 100 : exs2:=sort(convert(taylor(exp(t+t^2/2), t, N+1), polynom), t, ascending) : exs3:=sort(convert(taylor(exp(t+t^3/3), t, N+1), polynom), t, ascending) : exs23:=sort(add(op(n+1, exs2)*op(n+1, exs3)/(t^n/ n!), n=0..N), t, ascending) : logexs23:=sort(convert(taylor(log(exs23), t, N+1), polynom), t, ascending) : sort(add(op(n, logexs23)*n!*n, n=1..N), t, ascending);
MATHEMATICA
m = 18;
s2 = Exp[t + t^2/2] + O[t]^(m+1) // Normal;
s3 = Exp[t + t^3/3] + O[t]^(m+1) // Normal;
s = Sum[s2[[n+1]] s3[[n+1]]/(t^n/n!), {n, 0, m}];
CoefficientList[Log[s] + O[t]^(m+1), t] Range[0, m]! Range[0, m] // Rest (* Jean-François Alcover, Sep 02 2018, from Maple *)
PROG
(PARI) N=18; x='x+O('x^(N+1));
A121357_ser = serconvol(serlaplace(exp(x+x^2/2)), serlaplace(exp(x+x^3/3)));
Vec(x*A121355_ser') \\ Gheorghe Coserea, May 10 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Samuel A. Vidal, Jul 23 2006
STATUS
approved