Problem 755 题目发布于 2021-04-18 翻译更新于 2021-09-08 Problem 755 Not ZeckendorfConsider the Fibonacci sequence 1,2,3,5,8,13,21,…. We let f(n) be the number of ways of representing an integer n≥0 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 defineS(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)为将整数n≥0表示为不同斐波那契数之和的方法数。例如,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)=415,S(104)=312807。 求S(1013)。 译注:齐肯多夫表示是指将一个整数表示为不连续的不同斐波那契数之和,根据齐肯多夫定理可知该表示唯一;而本题不要求不连续。
Gitalking ...