login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A282236
a(n) = Fibonacci(n) represented in bijective base-5 numeration.
2
1, 1, 2, 3, 5, 13, 23, 41, 114, 155, 324, 534, 1413, 2452, 4415, 12422, 22342, 35314, 113211, 153525, 322241, 531321, 1354112, 2435433, 4344545, 12335533, 22241133, 35132221, 112423354, 153111125, 315534534, 524151214, 1345241253, 2424442522, 4325234325
OFFSET
1,3
LINKS
FORMULA
a(n) = A084545(A000045(n)).
MAPLE
a:= proc(n) local b, d, l, m; l:= NULL;
b, m:= 5, combinat[fibonacci](n);
while m>0 do d:= irem(m, b, 'm');
if d=0 then d:=b; m:=m-1 fi;
l:= d, l
od; parse(cat(l))
end:
seq(a(n), n=0..35);
CROSSREFS
Column k=5 of A214679.
Sequence in context: A193300 A215310 A087898 * A215306 A072537 A357916
KEYWORD
nonn,base,easy
AUTHOR
Alois P. Heinz, Feb 09 2017
STATUS
approved