OFFSET
3,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 3..200
J. Riordan, Enumeration of trees by height and diameter, IBM J. Res. Dev. 4 (1960), 473-478
FORMULA
(-2*n+7)*a(n) + n*(2*n-5)*a(n-1) = 0. - R. J. Mathar, Apr 03 2017
E.g.f.: x^3*(1 + x)/(2*(1 - x)^2). - Ilya Gutkovskiy, May 23 2017
MATHEMATICA
Table[n!*(2*n-5)/2, {n, 3, 20}] (* Harvey P. Dale, Oct 10 2012 *)
PROG
(Magma) [Factorial(n)*(2*n-5)/2: n in [3..22]]; // Vincenzo Librandi, May 25 2017
(PARI) for(n=3, 30, print1(n!*(2*n-5)/2, ", ")) \\ G. C. Greubel, Feb 16 2018
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved