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

A282238
a(n) = Fibonacci(n) represented in bijective base-7 numeration.
2
1, 1, 2, 3, 5, 11, 16, 27, 46, 76, 155, 264, 452, 746, 1531, 2577, 4441, 7351, 15122, 25473, 43625, 72431, 146356, 252117, 431476, 713626, 1445435, 2462364, 4241132, 6733526, 14274661, 24341517, 41646511, 66321331, 141271142, 237622473, 412223645, 653146451
OFFSET
1,3
LINKS
FORMULA
a(n) = A214677(A000045(n)).
MAPLE
a:= proc(n) local b, d, l, m; l:= NULL;
b, m:= 7, 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=7 of A214679.
Sequence in context: A324855 A316467 A366884 * A004690 A001882 A044042
KEYWORD
nonn,base,easy
AUTHOR
Alois P. Heinz, Feb 09 2017
STATUS
approved