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

A097156
Least number that requires exactly n iterations of f(x) = reverse(x) - maxdigit(x) to reach zero.
5
1, 11, 16, 12, 15, 25, 36, 106, 104, 108, 197, 1009, 1022, 1052, 1091, 1073, 1801, 10004, 10005, 10051, 10062, 10071, 10083, 10081, 10092, 14991, 19982, 19991, 100092, 100192, 100282, 100191, 107991, 101973, 289101, 1000094, 1000084
OFFSET
1,2
EXAMPLE
a(5)=15 because 15 -> 46 -> 58 -> 77 -> 70 -> 0 takes five steps to reach zero.
MATHEMATICA
g[n_] := Block[{id = IntegerDigits[n]}, ie = FromDigits[ Reverse[id]] - Union[id][[ -1]]; If[ie == 89, 0, ie]]; h[n_] := Length[NestWhileList[g, n, UnsameQ, All]] - 2; Do[ a = h[n]; If[a < 51 && t[[a]] == 0, t[[a]] = n], {n, 10^6}] (* Robert G. Wilson v, Aug 13 2004 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Jason Earls, Aug 01 2004
EXTENSIONS
More terms from Robert G. Wilson v, Aug 13 2004
STATUS
approved