OFFSET
1,2
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
F. C. Holroyd and W. J. G. Wingate, Cycles in the complement of a tree or other graph, Discrete Math., 55 (1985), 267-282.
FORMULA
G.f.: 2*Sum_{k>=0} k!*(x/(1-x))^k - 1 = Q(0) -1, where Q(k)= 1 + 1/(1 - x*(k+1)/(x*(k+1) + (1-x)/Q(k+1) )); (continued fraction). - Sergei N. Gladkovskii, Aug 08 2013
MATHEMATICA
RecurrenceTable[{a[n] == (n + 1) a[n - 1] + (2 - n) a[n - 2], a[0] == 1, a[1] == 2}, a, {n, 20}] (* Robert G. Wilson v, Jun 15 2013 *)
PROG
(Magma) [n le 2 select n else n*Self(n-1)+(3-n)*Self(n-2): n in [1..30]]; // Vincenzo Librandi, Mar 06 2016
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
More terms from James A. Sellers, Aug 21 2000
a(1) from Robert G. Wilson v, Jun 15 2013
a(21)-a(22) from Vincenzo Librandi, Mar 06 2016
STATUS
approved