OFFSET
1,2
COMMENTS
Acyclic alkanes of the form C_nH_mXY with X != Y. For X = Y see A005961. - Sean A. Irvine, Nov 12 2016
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
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. 44.
FORMULA
G.f.: 1/(1-x*B(x)^2) where B(x) is the g.f. for A000625. - Sean A. Irvine, Nov 12 2016
MATHEMATICA
terms = 27; (* B = g.f. for A000625 *) B[_] = 0; Do[B[x_] = 1 + x*((B[x]^3 + 2*B[x^3])/3) + O[x]^(terms + 1) // Normal, terms + 1];
A[x_] = 1/(1 - x*B[x]^2) + O[x]^(terms + 1);
CoefficientList[A[x], x] // Rest (* Jean-François Alcover, Jan 10 2018 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms and title improved by Sean A. Irvine, Nov 12 2016
STATUS
approved