OFFSET
0,2
COMMENTS
This sequence can be computed from Pascal's triangle. Find the fifth number in a row and multiply it by the second number of the next row. - Alonso del Arte, Jan 21 2018
Also the number of tetrahedra in the (n+4)-triangular = (n+4,2)-Johnson graph. - Eric W. Weisstein, Dec 25 2025
LINKS
Eric Weisstein's World of Mathematics, Graph Tetrahedron.
Eric Weisstein's World of Mathematics, Triangular Graph.
Index entries for linear recurrences with constant coefficients, signature (6,-15,20,-15,6,-1).
FORMULA
a(n) = (n^5 + 10*n^4 + 35*n^3 + 50*n^2 + 24*n) / 24.
a(n) = A003506(n+4, 5) for n > 0.
a(n) = 6*a(n-1) - 15*a(n-2) + 20*a(n-3) - 15*a(n-4) + 6*a(n-5) - a(n-6), with a(0)=0, a(1)=5, a(2)=30, a(3)=105, a(4)=280, a(5)=630. - Harvey P. Dale, Dec 03 2011
G.f.: 5*x/(1-x)^6. - Colin Barker, Mar 18 2012
From Amiram Eldar, Sep 27 2025: (Start)
Sum_{n>=1} 1/a(n) = 1/4.
Sum_{n>=1} (-1)^(n+1)/a(n) = 16*log(2) - 131/12. (End)
MATHEMATICA
Table[n Binomial[n + 4, 4], {n, 0, 40}] (* Harvey P. Dale, Dec 03 2011 *)
LinearRecurrence[{6, -15, 20, -15, 6, -1}, {0, 5, 30, 105, 280, 630}, 40] (* Harvey P. Dale, Dec 03 2011 *)
PROG
(Magma) [ (n^5+10*n^4+35*n^3+50*n^2+24*n)/24: n in [0..40] ]; // Vincenzo Librandi, Dec 28 2010
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Reinhard Zumkeller, Mar 05 2010, Mar 17 2010
EXTENSIONS
Title switched with first Formula section entry, at the suggestion of Alonso del Arte, by Jon E. Schoenfield, Jan 28 2018
STATUS
approved
