OFFSET
0,3
REFERENCES
N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
T. D. Noe, Table of n, a(n) for n = 0..200
Frederic Chyzak, Enumerating alcohols and other classes of chemical molecules
H. R. Henze and C. M. Blair, The number of structural isomers of the more important types of aliphatic compounds, J. Amer. Chem. Soc., 56 (1) (1934), 157-157.
H. R. Henze and C. M. Blair, The number of structural isomers of the more important types of aliphatic compounds, J. Amer. Chem. Soc., 56 (1) (1934), 157-157. (Annotated scanned copy)
G. Polya, Algebraische Berechnung der Anzahl der Isomeren einiger organischer Verbindungen, Zeit. f. Kristall., 93 (1936), 415-443; Table I line 3.
G. Polya, Algebraische Berechnung der Anzahl der Isomeren einiger organischer Verbindungen, Zeit. f. Kristall., 93 (1936), 415-443; Table I, line 3. (Annotated scanned copy)
R. C. Read, The Enumeration of Acyclic Chemical Compounds, pp. 25-61 of A. T. Balaban, ed., Chemical Applications of Graph Theory, Ac. Press, 1976. [Annotated scanned copy] See p. 28.
FORMULA
G.f.: A(x) = B(x)/(1-B(x)), B(x) = g.f. for A000642.
MATHEMATICA
terms = 29; B[_] = 0; Do[B[x_] = 1 + (1/6)*x*(B[x]^3 + 3*B[x]*B[x^2] + 2*B[x^3]) + O[x]^terms // Normal, terms];
B642[x_] = (1/2)*x*(B[x^2] + B[x]^2) + O[x]^terms;
A[x_] = B642[x]/(1 - B642[x]);
CoefficientList[A[x], x] (* Jean-François Alcover, Oct 21 2011, updated Jan 10 2018 *)
CROSSREFS
KEYWORD
nonn,easy,nice
AUTHOR
STATUS
approved