A058475 Total number of interior nodes in all series-parallel networks with n labeled edges, multiple edges not allowed.
0, 0, 1, 5, 41, 394, 4704, 65386, 1049754, 19032392, 385419072, 8615947592, 210831826952, 5604404196832, 160834760288864, 4955867959526784, 163197046787269792, 5719576163352685696, 212565832527352216928, 8350117027586731306848
Offset: 0
References
- J. W. Moon, Some enumerative results on series-parallel networks, Annals Discrete Math., 33 (1987), 199-226 (the sequence I_V(n)*Q_pi).
Programs
-
Mathematica
max = 19; q = CoefficientList[ InverseSeries[ Series[-1 + E^(1 + 2*a - E^a), {a, 0, max}], x], x]*Table[x^k, {k, 0, max}] // Total; r = q - Log[1 + x]; v = q + r; ev = (v*q - r)/(1 - v); CoefficientList[ Series[ev, {x, 0, max}], x]*Range[0, max]! (* Jean-François Alcover, Feb 01 2013 *)