A215023 NegaFibonacci representation for -n.
0, 10, 1001, 1000, 1010, 100101, 100100, 100001, 100000, 100010, 101001, 101000, 101010, 10010101, 10010100, 10010001, 10010000, 10010010, 10000101, 10000100, 10000001, 10000000, 10000010, 10001001, 10001000, 10001010, 10100101, 10100100, 10100001, 10100000
Offset: 0
Examples
-4 = -3 - 1 = F_{-4} + F_{-2}, so a(4) = 1010.
References
- Donald E. Knuth, The Art of Computer Programming, Volume 4A, Combinatorial algorithms, Part 1, Addison-Wesley, 2011, pp. 168-171.
Links
- Amiram Eldar, Table of n, a(n) for n = 0..10000
- M. W. Bunder, Zeckendorf representations using negative Fibonacci numbers, The Fibonacci Quarterly, Vol. 30, No. 2 (1992), pp. 111-115.
- Donald E. Knuth, The Art of Computer Programming, Volume 4, Fascicle 1: Bitwise Tricks & Techniques; Binary Decision Diagrams, a pre-publication draft of section 7.1.3, 2009, pp. 36-39.
- Wikipedia, NegaFibonacci coding.
Programs
-
Mathematica
ind[n_] := Floor[Log[Abs[n]*Sqrt[5] + 1/2]/Log[GoldenRatio]]; f[1] = 1; f[n_] := If[n > 0, i = ind[n - 1]; If[EvenQ[i], i++]; i, i = ind[-n]; If[OddQ[i], i++]; i]; a[n_] := Module[{k = n, s = 0}, While[k != 0, i = f[k]; s += 10^(i - 1); k -= Fibonacci[-i]]; s]; Table[a[n], {n, 0, -100, -1}] (* Amiram Eldar, Oct 15 2019 *)
-
PARI
a(n)=my(s=0,k=0,v);while(s
Charles R Greathouse IV, Aug 03 2012 [Caution: returns wrong values for some values of n > 17. Amiram Eldar, Oct 15 2019]
Extensions
a(18) inserted by Amiram Eldar, Oct 11 2019
Comments