OFFSET
1,5
COMMENTS
The degree of each node is <= 4.
A centroid is a node with less than n/2 nodes in each of the incident subtrees, where n is the number of nodes in the tree. If a centroid exists it is unique.
Regarding stereoisomers as different means that only the alternating group A_4 acts at each node, not the full symmetric group S_4. See A010372 for the analogous sequence when stereoisomers are not counted as different.
LINKS
FORMULA
Let r(x) = g.f. A(x) for A000625 truncated after the x^n term (x^0 through x^n terms only). Then coefficients of x^(2n) and x^(2n+1) in [r(x)^4 + 8 r(x^3) r(x) + 3 r(x^2)^2]/12 are terms 2n+1 and 2n+2 in current sequence..
MATHEMATICA
c[0] = 1; f[x_, m_] := Sum[c[k] x^k, {k, 0, m}]; coes[m_] := CoefficientList[Series[f[x, m] - 1 - (x*(f[x, m]^3 + 2*f[x^3, m])/3), {x, 0, m}], x] // Rest; r[x_, m_] := r[x, m] = (f[x, m] /. Solve[Thread[coes[m] == 0]] // First); b[m_] := CoefficientList[(1/12)*(r[x, m]^4 + 3*r[x^2, m]^2 + 8*r[x, m]*r[x^3, m]), x]; a[1]=1; a[2]=0; a[n_] := b[Quotient[n-1, 2]][[n]]; Table[Print["a(", n, ") = ", an = a[n]]; an, {n, 1, 30}] (* Jean-François Alcover, Dec 29 2014 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Steve Strand (snstrand(AT)comcast.net), Aug 28 2003
STATUS
approved