OFFSET
1,2
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
Don Reble, Difference of Fibonacci's, Posting to Sequence Fans Mailing List, Aug 10 2017.
EXAMPLE
9 is here because F(6) - F(-2) = 8 - (-1) = 9.
MAPLE
N:= 40: # to get all terms <= F(N) - F(N-1)
P:= sort(convert({seq(combinat:-fibonacci(n), n=-N..N)}, list)):
sort(convert(select(`<=`, {seq(seq(P[i]-P[j], j=1..i-1), i=1..nops(P))}, P[-1]-P[-2]), list)): # Robert Israel, Aug 11 2017
MATHEMATICA
Select[Union[Subtract @@@ Tuples[Fibonacci[Range[-30, 30]], 2]], 0 < # < 150 &] (* Giovanni Resta, Aug 11 2017 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Aug 11 2017
EXTENSIONS
Corrected by R. J. Mathar, Aug 10 2017
More terms from Giovanni Resta, Aug 11 2017
STATUS
approved