OFFSET
0,4
EXAMPLE
12 is the minimal number which is not a sum of two Fibonacci numbers. Therefore 12 is in the sequence. 13 is included because it is a Fibonacci number. 14 = 12+2 is a sum of two already included terms, so it is omitted. 19 is included as it is not a sum of two of the terms already included, namely 0,1,1,2,3,5,8,12,13.
PROG
(Sage)
def A176746(max) :
res = [0, 1]
fib1 = 1; fib2 = 1
for i in range(1, max+1) :
if i == fib2 :
res.append(i)
[fib1, fib2] = [fib2, fib1 + fib2]
continue
for t in res :
if i-t in res : break
else : res.append(i)
return res
# Eric M. Schmidt, Jan 26 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladimir Shevelev, Apr 25 2010
EXTENSIONS
Sequence extended, definition and example rewritten by Eric M. Schmidt, Jan 26 2013
STATUS
approved