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”).

A282240
a(n) = Fibonacci(n) represented in bijective base-9 numeration.
2
1, 1, 2, 3, 5, 8, 14, 23, 37, 61, 98, 169, 278, 458, 747, 1316, 2164, 3481, 5655, 9246, 15912, 26258, 43271, 69539, 123821, 194461, 328382, 533853, 863345, 1497298, 2471654, 3978963, 6561727, 11651791, 18323628, 29975529, 49399258, 81485788, 141896157
OFFSET
1,3
LINKS
FORMULA
a(n) = A052382(A000045(n)).
EXAMPLE
a(10) = 61_bij9 = 9*6+1 = 55 = Fibonacci(10).
MAPLE
a:= proc(n) local b, d, l, m; l:= NULL;
b, m:= 9, 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..40);
CROSSREFS
Column k=9 of A214679.
Sequence in context: A131132 A293545 A306274 * A004692 A094926 A225391
KEYWORD
nonn,base,easy
AUTHOR
Alois P. Heinz, Feb 09 2017
STATUS
approved