OFFSET
1,1
COMMENTS
a(n+1) is obtained by sorting the digits of a(n) into increasing order then adding this number to a(n).
EXAMPLE
96+69=165.
MAPLE
A033893 := proc(n)
option remember ;
if n =1 then
3;
else
A070196(procname(n-1)) ;
end if;
end proc:
seq(A033893(n), n=1..100) ; # R. J. Mathar, Feb 03 2025
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
STATUS
approved