The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 14 11:10 EDT 2024. Contains 372532 sequences. (Running on oeis4.)