OFFSET
0,1
COMMENTS
Like for iterations with starting points 8 or 14, it is conjectured that also this trajectory never repeats.
REFERENCES
D. Gale, Tracking the Automatic Ant and Other Mathematical Explorations, A Collection of Mathematical Entertainments Columns from The Mathematical Intelligencer, Springer, 1998; see p. 16.
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 0..10000
J. H. Conway, On unsettleable arithmetical problems, Amer. Math. Monthly, 120 (2013), 192-198.
FORMULA
a(n+1) = A006368(a(n)), with a(0) = 40.
MATHEMATICA
SubstitutionSystem[{n_ :> If[EvenQ[n], 3 n/2, Round[3 n/4]]}, {40}, 60] // Flatten (* Jean-François Alcover, Mar 01 2019 *)
PROG
(Haskell)
a182205 n = a182205_list !! n
a182205_list = iterate a006368 40
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Apr 18 2012
STATUS
approved