A256174 Boomerang Fractions: Starting with 1, on the first step add 1/n, and on subsequent steps either add 1/n or take the reciprocal. a(n) = minimal number of steps needed to return to 1.
4, 9, 7, 20, 6, 33, 13, 23, 16, 62, 8, 75, 18, 17, 25
Offset: 2
Examples
a(2) = 4 because 1 -> 3/2 -> 2 -> 1/2 -> 1 using four steps (addition, addition, reciprocal, addition).
Links
Extensions
a(13)-a(16) from Jon E. Schoenfield, Apr 20 2015
Comments