%I #8 Feb 17 2017 14:52:53
%S 1,1,2,3,5,13,23,41,114,155,324,534,1413,2452,4415,12422,22342,35314,
%T 113211,153525,322241,531321,1354112,2435433,4344545,12335533,
%U 22241133,35132221,112423354,153111125,315534534,524151214,1345241253,2424442522,4325234325
%N a(n) = Fibonacci(n) represented in bijective base-5 numeration.
%H Alois P. Heinz, <a href="/A282236/b282236.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) = A084545(A000045(n)).
%p a:= proc(n) local b, d, l, m; l:= NULL;
%p b, m:= 5, 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=5 of A214679.
%Y Cf. A000045, A084545.
%K nonn,base,easy
%O 1,3
%A _Alois P. Heinz_, Feb 09 2017