OFFSET
1,4
COMMENTS
Number of connected unicyclic simple graphs on n labeled nodes such that the unique cycle has length 3. - Len Smiley, Nov 27 2001
Each simple graph (of this type) corresponds to exactly two 'functional digraphs' counted by A065513.
REFERENCES
R. P. Stanley, Enumerative Combinatorics, Cambridge, Vol. 2, 1999; see Prop. 5.3.2.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..100
FORMULA
E.g.f.: -LambertW(-x)^3/3!. - Vladeta Jovovic, Apr 07 2001
MATHEMATICA
Range[0, nn]! CoefficientList[Series[t^3/3!, {x, 0, nn}], x], 1] (* Geoffrey Critzer, Jan 22 2012 *)
Table[Binomial[n-1, 2]n^(n-3), {n, 20}] (* Harvey P. Dale, Sep 24 2019 *)
PROG
(Magma) [Binomial(n-1, 2)*n^(n-3):n in [1..20]]; // Vincenzo Librandi, Sep 22 2011
(PARI) vector(20, n, binomial(n-1, 2)*n^(n-3)) \\ G. C. Greubel, Jan 18 2017
(Magma) [Binomial(n-1, 2)*n^(n-3): n in [1..20]]; // G. C. Greubel, May 15 2019
(Sage) [binomial(n-1, 2)*n^(n-3) for n in (1..20)] # G. C. Greubel, May 15 2019
(GAP) List([1..20], n-> Binomial(n-1, 2)*n^(n-3)) # G. C. Greubel, May 15 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jan 15 2000
EXTENSIONS
Incorrect Mathematica program deleted by Harvey P. Dale, Sep 24 2019
STATUS
approved