A339288 Number of essentially series oriented series-parallel networks with n elements and without multiple unit elements in parallel.
0, 1, 1, 3, 8, 22, 64, 189, 577, 1788, 5642, 18016, 58213, 189792, 623913, 2065219, 6878429, 23032917, 77500237, 261892491, 888439320, 3024510467, 10329241959, 35379140285, 121502993735, 418306868672, 1443409882944, 4991122973019, 17292424070839, 60021140494647, 208684858267921
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(2) = 1: (oo). a(3) = 1: (ooo). a(4) = 3: (oooo), (o(o|oo)), ((o|oo)o). a(5) = 8: (ooooo), (oo(o|oo)), (o(o|oo)o), ((o|oo)oo), (o(o|ooo)), (o(oo|oo)), ((o|ooo)o), ((oo|oo)o).
Programs
-
PARI
EulerT(v)={Vec(exp(x*Ser(dirmul(v,vector(#v,n,1/n))))-1, -#v)} seq(n, Z=x)={my(p=Z+O(x^2)); for(n=2, n, p = Z + (1 + Z)*x*Ser(EulerT( Vec(p^2/(1+p), -n) ))); Vec(p - p/(1+p), -n)}
Comments