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”).

A357694
Number of ways to write n as an ordered sum of seven positive Fibonacci numbers (with a single type of 1).
4
1, 7, 28, 77, 168, 308, 504, 750, 1050, 1400, 1813, 2261, 2737, 3227, 3753, 4312, 4921, 5579, 6230, 6832, 7413, 8008, 8652, 9289, 9996, 10654, 11361, 12061, 12853, 13657, 14357, 14924, 15393, 15869, 16408, 16933, 17689, 18319, 18949, 19537, 20244, 21049, 21728
OFFSET
7,2
FORMULA
G.f.: ( Sum_{k>=2} x^Fibonacci(k) )^7.
a(n) = A121548(n,7).
MATHEMATICA
nmax = 49; CoefficientList[Series[Sum[x^Fibonacci[k], {k, 2, 21}]^7, {x, 0, nmax}], x] // Drop[#, 7] &
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Oct 10 2022
STATUS
approved