%I #6 Feb 17 2017 14:53:17
%S 1,1,2,3,5,12,21,33,54,131,225,356,625,1425,2454,4323,11221,15544,
%T 31165,51153,122362,213555,336361,554356,1335161,2333561,4113162,
%U 6451163,14564365,25455612,44464421,114364433,163313254,322122131,525435425,1251561556
%N a(n) = Fibonacci(n) represented in bijective base-6 numeration.
%H Alois P. Heinz, <a href="/A282237/b282237.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) = A057436(A000045(n)).
%p a:= proc(n) local b, d, l, m; l:= NULL;
%p b, m:= 6, 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..40);
%Y Column k=6 of A214679.
%Y Cf. A000045, A057436.
%K nonn,base,easy
%O 1,3
%A _Alois P. Heinz_, Feb 09 2017