cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A282236 a(n) = Fibonacci(n) represented in bijective base-5 numeration.

This page as a plain text file.
%I A282236 #8 Feb 17 2017 14:52:53
%S A282236 1,1,2,3,5,13,23,41,114,155,324,534,1413,2452,4415,12422,22342,35314,
%T A282236 113211,153525,322241,531321,1354112,2435433,4344545,12335533,
%U A282236 22241133,35132221,112423354,153111125,315534534,524151214,1345241253,2424442522,4325234325
%N A282236 a(n) = Fibonacci(n) represented in bijective base-5 numeration.
%H A282236 Alois P. Heinz, <a href="/A282236/b282236.txt">Table of n, a(n) for n = 1..1000</a>
%H A282236 Wikipedia, <a href="https://en.wikipedia.org/wiki/Bijective_numeration">Bijective numeration</a>
%F A282236 a(n) = A084545(A000045(n)).
%p A282236 a:= proc(n) local b, d, l, m; l:= NULL;
%p A282236       b, m:= 5, combinat[fibonacci](n);
%p A282236       while m>0 do  d:= irem(m, b, 'm');
%p A282236         if d=0 then d:=b; m:=m-1 fi;
%p A282236         l:= d, l
%p A282236       od; parse(cat(l))
%p A282236     end:
%p A282236 seq(a(n), n=0..35);
%Y A282236 Column k=5 of A214679.
%Y A282236 Cf. A000045, A084545.
%K A282236 nonn,base,easy
%O A282236 1,3
%A A282236 _Alois P. Heinz_, Feb 09 2017