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
LINKS
Alan Michael Gómez Calderón, Table of n, a(n) for n = 0..10000
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)];
PROG
(PARI) a(n) = fromdigits(digits(n), 9); \\ Alan Michael Gómez Calderón, Sep 28 2025
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
EXTENSIONS
More terms from Erich Friedman.
STATUS
approved
