|
Search: id:A104326
|
|
|
| A104326 |
|
Dual Zeckendorf representation of n or the maximal (binary) Fibonacci representation. |
|
+0 7
|
|
| 0, 1, 10, 11, 101, 110, 111, 1010, 1011, 1101, 1110, 1111, 10101, 10110, 10111, 11010, 11011, 11101, 11110, 11111, 101010
(list; graph; listen)
|
|
|
OFFSET
|
0,3
|
|
|
COMMENT
|
Whereas the Zeckendorf (binary) rep (A014417) has no consecutive 1's (no two consecutive Fibonacci numbers in a set whose sum is n), the Dual Zeckendorf Represntation has no consecutive 0's. Also called the Maximal (Binary) Fibonacci Representation, the Zeckendorf rep. being the Minimal in terms of number of 1's in the binary representation.
|
|
REFERENCES
|
J L Brown 'A New Characterization of the Fibonacci Numbers' Fibonacci Quarterly, 3 (1965), pp. 1-8
|
|
LINKS
|
R Knott Using Fibonacci Numbers to Represent Whole Numbers
|
|
EXAMPLE
|
As a sum of Fibonacci numbers (A000045) [using 1 at most once],
13 is 13=8+5=8+3+2. The largest set here is 8+3+2 or, in base Fibonacci, 10110 so a(13)=10110(fib). The Zeck. rep. would be the smallest set or {13}=100000(fib)
|
|
MAPLE
|
dualzeckrep:=proc(n)local i, z; z:=zeckrep(n); i:=1; while i<=nops(z)-2 do if z[i]=1 and z[i+1]=0 and z[i+2]=0 then z[i]:=0; z[i+1]:=1; z[i+2]:=1; if i>3 then i:=i-2 fi else i:=i+1 fi od; if z[1]=0 then z:=subsop(1=NULL, z) fi; z end proc: seq(dualzeckrep
|
|
CROSSREFS
|
Cf. A014417, A104324.
a(n)=A007088(A003754(n)).
Sequence in context: A125099 A055611 A077813 this_sequence A037090 A118240 A157845
Adjacent sequences: A104323 A104324 A104325 this_sequence A104327 A104328 A104329
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Ron Knott (enquiry(AT)ronknott.com), Mar 01 2005
|
|
|
Search completed in 0.002 seconds
|