OFFSET
0,1
LINKS
T. D. Noe, Table of n, a(n) for n = 0..1000
J. H. Conway, On unsettleable arithmetical problems, Amer. Math. Monthly, 120 (2013), 192-198.
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.
FORMULA
a(n+1) = A006368(a(n)).
MATHEMATICA
SubstitutionSystem[{n_ :> If[EvenQ[n], 3n/2, Round[3n/4]]}, {14}, 60] // Flatten (* Jean-François Alcover, Mar 01 2019 *)
PROG
(Haskell)
a028395 n = a028395_list !! n
a028395_list = iterate a006368 14 -- Reinhard Zumkeller, Apr 18 2012
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved