login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A028395
Iterate the map in A006368 starting at 14.
20
14, 21, 16, 24, 36, 54, 81, 61, 46, 69, 52, 78, 117, 88, 132, 198, 297, 223, 167, 125, 94, 141, 106, 159, 119, 89, 67, 50, 75, 56, 84, 126, 189, 142, 213, 160, 240, 360, 540, 810, 1215, 911, 683, 512, 768, 1152, 1728, 2592, 3888, 5832, 8748, 13122, 19683
OFFSET
0,1
LINKS
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
Cf. A028393.
Cf. A180853, A180864, A182205; A028398(5) = 14.
Sequence in context: A070719 A030643 A303475 * A167170 A213536 A330137
KEYWORD
nonn
AUTHOR
STATUS
approved