OFFSET
1,9
COMMENTS
Indices for the first occurrences of k=0..6 are: 1, 2, 9, 63, 693, 7623, 105105.
The claim a(n) <= bigomega(n) is true because A007895(n) is the minimum number of Fibonacci numbers which sum to n, regardless of adjacency or duplication. See Apr 17 2015 comments there.
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..129591
Mathworld, Fibonacci Number
Wikipedia, Zeckendorf's theorem
PROG
(PARI)
A113177(n) = if(n<=1, 0, my(f=factor(n)); sum(i=1, #f~, f[i, 2]*fibonacci(f[i, 1])));
CROSSREFS
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jul 02 2024
STATUS
approved