OFFSET
0,2
COMMENTS
Row sums of number triangle A115292.
If Y_i (i=1,2,3,4,5) are 2-blocks of a (n+5)-set X then a(n-2) is the number of 7-subsets of X intersecting each Y_i (i=1,2,3,4,5). - Milan Janjic, Oct 28 2007
LINKS
Michael De Vlieger, Table of n, a(n) for n = 0..10000
Milan Janjic, Two Enumerative Functions
Index entries for linear recurrences with constant coefficients, signature (3,-3,1).
FORMULA
G.f.: A(x) = (1+x)^5/(1-x)^3.
From Peter Bala, Sep 26 2021: (Start)
a(n) = Sum_{k = 0..n} binomial(5,n-k)*binomial(k+2,k).
A262732(n) = [x^n] A(x)^n. (End)
MAPLE
seq(add(binomial(5, n-k)*binomial(k+2, k), k = 0..n), n = 0..40); # Peter Bala, Sep 26 2021
MATHEMATICA
LinearRecurrence[{3, -3, 1}, {1, 8, 31, 80, 160, 272}, 50] (* Harvey P. Dale, Dec 03 2018 *)
PROG
(PARI) a(n) = sum(k = 0, n, binomial(5, n-k)*binomial(k+2, k)); \\ Michel Marcus, Oct 01 2021
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Paul Barry, Jan 19 2006
STATUS
approved