OFFSET
1,2
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
J. Riordan, Enumeration of trees by height and diameter, IBM J. Res. Dev. 4 (1960), 473-478.
Index entries for linear recurrences with constant coefficients, signature (5,-10,10,-5,1).
FORMULA
G.f.: (1+5*z-2*z^2-7*z^3+7*z^5-3*z^6)*z/(1-z)^5. - Robert Israel, Jun 14 2017
MAPLE
1, 10, seq(binomial(n+3, 4)+3*binomial(n+1, 3)+5*binomial(n-1, 2)+7*n-15, n=3..40);
# Robert Israel, Jun 14 2017
MATHEMATICA
Join[{1, 10}, Table[Binomial[n+3, 4]+3Binomial[n+1, 3]+5Binomial[n-1, 2]+7n-15, {n, 3, 40}]] (* Harvey P. Dale, Jan 09 2014 *)
PROG
(PARI) x='x+O('x^30); Vec(x*(1+5*x-2*x^2-7*x^3+7*x^5-3*x^6)/(1-x)^5) \\ G. C. Greubel, Feb 22 2018
(Magma) [1, 10] cat [Binomial(n+3, 4) + 3*Binomial(n+1, 3) + 5*Binomial(n-1, 2) + 7*n -15: n in [3..30]]; // G. C. Greubel, Feb 22 2018
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved