%I #6 Feb 17 2017 14:52:31
%S 1,1,2,3,11,14,31,111,142,313,1121,1434,3221,11321,21142,33123,114331,
%T 214114,341111,1221231,2222342,3444233,12333241,22444134,41443441,
%U 131214241,233324342,431211243,1331142311,2422414214,4414223131,13443243411,31124133142
%N a(n) = Fibonacci(n) represented in bijective base-4 numeration.
%H Alois P. Heinz, <a href="/A282235/b282235.txt">Table of n, a(n) for n = 1..1000</a>
%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Bijective_numeration">Bijective numeration</a>
%F a(n) = A084544(A000045(n)).
%p a:= proc(n) local b, d, l, m; l:= NULL;
%p b, m:= 4, combinat[fibonacci](n);
%p while m>0 do d:= irem(m, b, 'm');
%p if d=0 then d:=b; m:=m-1 fi;
%p l:= d, l
%p od; parse(cat(l))
%p end:
%p seq(a(n), n=0..35);
%Y Column k=4 of A214679.
%Y Cf. A000045, A084544.
%K nonn,base,easy
%O 1,3
%A _Alois P. Heinz_, Feb 09 2017