OFFSET
1,18
LINKS
Robert Price, Table of n, a(n) for n = 1..1000
FORMULA
G.f. : (-1 + 1/Product_{k>=0} (1 - x^(7 k + 4)))*(-1 + 1/Product_{k>=1} (1 - x^(7 k))). - Robert Price, Aug 12 2020
MATHEMATICA
nmax = 78; s1 = Range[1, nmax/7]*7; s2 = Range[0, nmax/7]*7 + 4;
Table[Count[IntegerPartitions[n, All, s1~Join~s2],
x_ /; ContainsAny[x, s1 ] && ContainsAny[x, s2 ]], {n, 1, nmax}] (* Robert Price, Aug 12 2020 *)
nmax = 78; l = Rest@CoefficientList[Series[(-1 + 1/Product[(1 - x^(7 k)), {k, 1, nmax}])*(-1 + 1/Product[(1 - x^(7 k + 4)), {k, 0, nmax}]), {x, 0, nmax}], x] (* Robert Price, Aug 12 2020 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved