A141836 a(n) = first term that can be reduced in n steps via repeated interpretation of a(n) as a base b+1 number where b is the largest digit of a(n), such that b is always 2 so that each interpretation is base 3. Terms already fully reduced (i.e., single digits) are excluded.
12, 202, 21111, 1001221220, 2120202222022022102
Offset: 1
Examples
a(3) = 21111 because 21111 is the first number that can produce a sequence of three terms by repeated interpretation as a base 3 number: [21111] (base-3) --> [202] (base-3) --> [20] (base-3) --> [6]. Since 6 cannot be interpreted as a base 3 number, the sequence terminates with 20. a(1) = 12 because 12 is the first number that can be reduced once, yielding no further terms interpretable as base 3.
Extensions
a(5) from Giovanni Resta, Feb 23 2013
Comments