Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
A357690
Number of ways to write n as an ordered sum of five positive Fibonacci numbers (with a single type of 1).
10
1, 5, 15, 30, 50, 71, 95, 115, 140, 165, 191, 205, 220, 240, 260, 285, 310, 325, 325, 320, 341, 350, 380, 385, 405, 420, 430, 450, 465, 465, 445, 410, 435, 425, 450, 481, 495, 515, 490, 510, 555, 525, 580, 540, 530, 570, 530, 580, 600, 520, 525, 440, 455, 520, 445, 555, 530
OFFSET
5,2
LINKS
FORMULA
G.f.: ( Sum_{k>=2} x^Fibonacci(k) )^5.
a(n) = A121548(n,5).
MATHEMATICA
nmax = 61; CoefficientList[Series[Sum[x^Fibonacci[k], {k, 2, 21}]^5, {x, 0, nmax}], x] // Drop[#, 5] &
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Oct 10 2022
STATUS
approved