A141837 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 3 so that each interpretation is base 4. Terms already fully reduced (i.e., single digits) are excluded.
13, 31, 133, 120332323, 13023002000203
Offset: 1
Examples
a(3) = 133 because 133 is the first number that can produce a sequence of three terms by repeated interpretation as a base 4 number: [133] (base-4) --> [31] (base-4) --> [13] (base-4) --> [7]. Since 7 cannot be interpreted as a base 4 number, the sequence terminates with 13. a(1) = 13 because 13 is the first number that can be reduced once, yielding no further terms interpretable as base 4.
Extensions
a(5) from Giovanni Resta, Feb 23 2013
Comments