OFFSET
1,2
COMMENTS
Note that digit 0 becomes 10, i.e. 0 with a 1 carried to the next place. - Robert Israel, Jun 26 2019
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
MAPLE
f:= proc(n) local L;
L:= subs(S, convert(n, base, 10));
add(L[i]*10^(i-1), i=1..nops(L))
end proc;
map(f, [$1..100]); # Robert Israel, Jun 26 2019
CROSSREFS
KEYWORD
AUTHOR
Zak Seidov, Mar 18 2005
STATUS
approved