OFFSET
0,3
COMMENTS
The number of ways to place non-overlapping Young diagrams of shape (2,1,1,1,1) on an 9 by n rectangle. - Per Alexandersson, Jul 01 2025
LINKS
Index entries for linear recurrences with constant coefficients, signature (1,5,10,10,5,1).
FORMULA
a(n) = a(n-1) + 5*a(n-2) + 10*a(n-3) + 10*a(n-4) + 5*a(n-5) + a(n-6).
G.f.: 1/(1 - x*(1+x)^5).
MAPLE
seq(add(binomial(5*k, n-k), k=0..n), n=0..50); # Robert Israel, Jul 09 2025
PROG
(PARI) a(n) = sum(k=0, n, binomial(5*k, n-k));
(PARI) my(N=30, x='x+O('x^N)); Vec(1/(1-x*(1+x)^5))
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Jan 25 2023
STATUS
approved
