OFFSET
1,5
COMMENTS
A series configuration is an ordered concatenation of two or more parallel configurations and a parallel configuration is the unit element or a multiset of two or more series configurations. a(n) is the number of series configurations with n unit elements.
FORMULA
EXAMPLE
In the following examples, elements in series are juxtaposed and elements in parallel are separated by '|'. The unit element is denoted by 'o'.
a(2) = 1: (oo).
a(3) = 1: (ooo).
a(4) = 1: (oooo).
a(5) = 3: (ooooo), (o(oo|oo)), ((oo|oo)o).
a(6) = 6: (oooooo), (oo(oo|oo)), (o(oo|oo)o), ((oo|oo)oo), (o(oo|ooo)), ((oo|ooo)o).
PROG
(PARI) EulerT(v)={Vec(exp(x*Ser(dirmul(v, vector(#v, n, 1/n))))-1, -#v)}
seq(n)={my(p=O(x^2)); for(n=2, n, p=x+x*Ser(EulerT(Vec(p, 1-n))); p=p^2/(1+p)); Vec(p, -n)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Andrew Howroyd, Nov 26 2020
STATUS
approved