login
A384328
Expansion of 1 / ((1-x)^3 * (1-x^7)).
1
1, 3, 6, 10, 15, 21, 28, 37, 48, 61, 76, 93, 112, 133, 157, 184, 214, 247, 283, 322, 364, 410, 460, 514, 572, 634, 700, 770, 845, 925, 1010, 1100, 1195, 1295, 1400, 1511, 1628, 1751, 1880, 2015, 2156, 2303, 2457, 2618, 2786, 2961, 3143, 3332, 3528, 3732, 3944, 4164
OFFSET
0,2
COMMENTS
Number of nonnegative integer solutions of equation x + y + z + 7*w=n.
a(n) is the number of partitions of n into parts 1 of three kinds and 7 (of one kind). - Joerg Arndt, May 28 2025
LINKS
FORMULA
a(n) = ((n+2) * (n+9) * (n+4) - (r+2) * (r-5) * (r-3)) / 42 where r = n mod 7.
a(n) = floor((n+3) * (n^2+12*n+26) / 42).
MATHEMATICA
A384328[n_] := Quotient[(n + 3)*(n*(n + 12) + 26), 42]; Array[A384328, 60, 0] (* Paolo Xausa, Jan 07 2026 *)
PROG
(PARI) my(x='x+O('x^60)); Vec(1/((1-x)^3*(1-x^7))) \\ Michel Marcus, May 27 2025
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Hoang Xuan Thanh, May 26 2025
STATUS
approved