OFFSET
87
LINKS
David A. Corneth, Table of n, a(n) for n = 87..10086
EXAMPLE
a(87) = 1 as 87 = 1 + 2 + 3 + 5 + 8 + 13 + 21 + 34. - David A. Corneth, Oct 24 2022
PROG
(PARI) first(n)= my(res = vector(n + 86), v = [1..8], l = List()); for(i = 2, oo, c = fibonacci(i); if(c <= n + 86, listput(l, c) , break ) ); forvec(x = vector(8, i, [1, #l]), c = sum(i = 1, #x, l[x[i]]); if(c <= #res, res[c]++ ) , 2 ); vector(#res - 86, i, res[i + 86]) \\ David A. Corneth, Oct 24 2022
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Oct 24 2022
STATUS
approved