OFFSET
0,2
COMMENTS
Convolution of triangular numbers (A000217) and decagonal numbers (A001107). [Bruno Berselli, Jul 21 2015]
REFERENCES
A. H. Beiler, Recreations in the Theory of Numbers, Dover, N.Y., 1964, pp. 194-196.
Herbert John Ryser, Combinatorial Mathematics, "The Carus Mathematical Monographs", No. 14, John Wiley and Sons, 1963, pp. 1-16.
LINKS
FORMULA
a(n) = binomial(n+4, 4)*(8*n+5)/5.
G.f.: (1+7*x)/(1-x)^6.
E.g.f.: (120 +*1440*x +2280*x^2 +1040*x^3 +165*x^4 +8*x^5)*exp(x)/120. - G. C. Greubel, Aug 30 2019
MAPLE
seq((8*n+5)*binomial(n+4, 4)/5, n=0..40); # G. C. Greubel, Aug 30 2019
MATHEMATICA
Table[(8*n+5)*Binomial[n+4, 4]/5, {n, 0, 40}] (* Vladimir Joseph Stephan Orlovsky, Apr 19 2011, modified by G. C. Greubel, Aug 30 2019 *)
PROG
(PARI) vector(40, n, (8*n-3)*binomial(n+3, 4)/5) \\ G. C. Greubel, Aug 30 2019
(Magma) [(8*n+5)*Binomial(n+4, 4)/5: n in [0..40]]; // G. C. Greubel, Aug 30 2019
(Sage) [(8*n+5)*binomial(n+4, 4)/5 for n in (0..30)] # G. C. Greubel, Aug 30 2019
(GAP) List([0..40], n-> (8*n+5)*Binomial(n+4, 4)/5); # G. C. Greubel, Aug 30 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Barry E. Williams, Dec 14 1999
EXTENSIONS
Terms a(28) onward added by G. C. Greubel, Aug 30 2019
STATUS
approved