0%

Problem 755


Problem 755


Not Zeckendorf

Consider the Fibonacci sequence 1,2,3,5,8,13,21,.

We let f(n) be the number of ways of representing an integer n0 as the sum of different Fibonacci numbers.
For example, 16=3+13=1+2+13=3+5+8=1+2+5+8 and hence f(16)=4. By convention f(0)=1.

Further we define
S(n)=k=0nf(k)
You are given S(100)=415 and S(104)=312807.

Find S(1013).


非齐肯多夫表示

考虑斐波那契数列1,2,3,5,8,13,21,

f(n)为将整数n0表示为不同斐波那契数之和的方法数。
例如,16=3+13=1+2+13=3+5+8=1+2+5+8,因此f(16)=4。按照惯例,记f(0)=1

我们进一步定义
S(n)=k=0nf(k)
已知S(100)=415S(104)=312807

S(1013)

译注:齐肯多夫表示是指将一个整数表示为不连续的不同斐波那契数之和,根据齐肯多夫定理可知该表示唯一;而本题不要求不连续。


Gitalking ...