proposed
approved
proposed
approved
editing
proposed
B. Hayes, Computer Recreations: On the ups and downs of hailstone numbers, Scientific American, 250 (No. 1, 1984), pp. 10-16.
Brian Hayes, <a href="https://www.jstor.org/stable/24969271">Computer Recreations: On the ups and downs of hailstone numbers</a>, Scientific American, 250 (No. 1, 1984), pp. 10-16.
approved
editing
proposed
approved
editing
proposed
Record number of steps to reach 1 in `'3x+1' problem, corresponding to starting values in A033958.
Only the 3x+1 steps , not the halving steps , are counted.
More terms from Winston C. Yang (winston(AT)cs.wisc.edu), Aug 27 2000 and from Larry Reeves (larryr(AT)acm.org), Sep 27 2000
More terms from Larry Reeves (larryr(AT)acm.org), Sep 27 2000
approved
editing
editing
approved
(Haskell)
a033959 n = a033959_list !! (n-1)
(a033959_list, a033958_list) = unzip $ (0, 1) : f 1 1 where
f i x | y > x = (y, 2 * i - 1) : f (i + 1) y
| otherwise = f (i + 1) x
where y = a075680 i
-- Reinhard Zumkeller, Jan 08 2014
Cf. A075680.
_N. J. A. Sloane (njas(AT)research.att.com)_.