A339156 Number of oriented series-parallel networks with n elements and without unit elements in parallel.
1, 1, 1, 2, 4, 9, 19, 43, 99, 235, 562, 1370, 3369, 8380, 21000, 53038, 134759, 344390, 884376, 2281274, 5907791, 15354795, 40037979, 104712010, 274600650, 721931534, 1902362100, 5023654075, 13292543205, 35237009037, 93570419556, 248873359877, 662940466647
Offset: 1
Keywords
Examples
In the following examples, elements in series are juxtaposed and elements in parallel are separated by '|'. The unit element is denoted by 'o'. a(1) = 1: (o) a(2) = 1: (oo). a(3) = 1: (ooo). a(4) = 2: (oooo), (oo|oo). a(5) = 4: (ooooo), (o(oo|oo)), ((oo|oo)o), (oo|ooo). a(6) = 9: (oooooo), (oo(oo|oo)), (o(oo|oo)o), ((oo|oo)oo), (o(oo|ooo)), ((oo|ooo)o), (oo|oooo), (ooo|ooo), (oo|oo).
Programs
-
PARI
EulerT(v)={Vec(exp(x*Ser(dirmul(v,vector(#v,n,1/n))))-1, -#v)} seq(n)={my(p=x+O(x^2)); for(n=2, n, p=x+x*Ser(EulerT(Vec(p^2/(1+p), -n)))); Vec(p)}
Comments