login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A339086
Number of compositions (ordered partitions) of n into distinct parts congruent to 1 mod 5.
3
1, 1, 0, 0, 0, 0, 1, 2, 0, 0, 0, 1, 2, 0, 0, 0, 1, 4, 6, 0, 0, 1, 4, 6, 0, 0, 1, 6, 12, 0, 0, 1, 6, 18, 24, 0, 1, 8, 24, 24, 0, 1, 8, 30, 48, 0, 1, 10, 42, 72, 0, 1, 10, 48, 120, 120, 1, 12, 60, 144, 120, 1, 12, 72, 216, 240, 1, 14, 84, 264, 360, 1, 14, 96, 360, 600, 1, 16, 114
OFFSET
0,8
FORMULA
G.f.: Sum_{k>=0} k! * x^(k*(5*k - 3)/2) / Product_{j=1..k} (1 - x^(5*j)).
EXAMPLE
a(18) = 6 because we have [11, 6, 1], [11, 1, 6], [6, 11, 1], [6, 1, 11], [1, 11, 6] and [1, 6, 11].
MATHEMATICA
nmax = 78; CoefficientList[Series[Sum[k! x^(k (5 k - 3)/2)/Product[1 - x^(5 j), {j, 1, k}], {k, 0, nmax}], {x, 0, nmax}], x]
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Nov 23 2020
STATUS
approved