OFFSET
0,3
COMMENTS
More than the usual number of terms are displayed in order to distinguish this from some closely related sequences. - N. J. A. Sloane, Mar 22 2014
MAPLE
f2:=proc(n) local t1, i, L;
t1:=convert(n, base, 10);
L:=nops(t1);
add(t1[i]*9^(i-1), i=1..L);
end;
[seq(f2(n), n=0..200)];
CROSSREFS
KEYWORD
nonn,base
AUTHOR
EXTENSIONS
More terms from Erich Friedman.
STATUS
approved