OFFSET
0,1
COMMENTS
Merges with the trajectory of 8 after four steps - see A028393.
It is a famous unsolved problem to show that this trajectory is unbounded.
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
J. H. Conway, On unsettleable arithmetical problems, Amer. Math. Monthly, 120 (2013), 192-198.
FORMULA
a(n+1) = A006368(a(n)).
MATHEMATICA
b[n_] := If[EvenQ[n], 3n/2, Floor[(3n+2)/4]];
a[0] = 13; a[n_] := a[n] = b[a[n-1]];
Table[a[n], {n, 0, 62}] (* Jean-François Alcover, Aug 01 2018 *)
SubstitutionSystem[{n_ :> If[EvenQ[n], 3n/2, Round[3n/4]]}, {13}, 62] // Flatten (* Jean-François Alcover, Mar 01 2019 *)
PROG
(Haskell)
a180864 n = a180864_list !! n
a180864_list = iterate a006368 13 -- Reinhard Zumkeller, Apr 18 2012
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jan 22 2011
STATUS
approved