login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A008874 3x+1 sequence starting at 63. 6
63, 190, 95, 286, 143, 430, 215, 646, 323, 970, 485, 1456, 728, 364, 182, 91, 274, 137, 412, 206, 103, 310, 155, 466, 233, 700, 350, 175, 526, 263, 790, 395, 1186, 593, 1780, 890, 445, 1336, 668, 334, 167, 502, 251, 754, 377, 1132, 566, 283, 850, 425, 1276, 638, 319, 958, 479, 1438, 719, 2158, 1079 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
a(n) = A008875(n - 2) for n > 1.
Doesn't reach a power of 2 until a(103) = 16. - Alonso del Arte, May 18 2015
REFERENCES
Richard K. Guy, Unsolved Problems in Number Theory, E16.
LINKS
MAPLE
f := proc(n) option remember; if n = 0 then 63; elif f(n-1) mod 2 = 0 then f(n-1)/2 else 3*f(n-1)+1; fi; end;
MATHEMATICA
NestList[If[EvenQ[#], #/2, 3# + 1] &, 63, 100] (* Vincenzo Librandi, Jul 29 2014 *)
PROG
(Haskell)
a008874 n = a008874_list !! n
a008874_list = 63 : iterate a006370 63
-- Reinhard Zumkeller, Aug 30 2012
(Magma) [n eq 1 select 63 else IsOdd(Self(n-1)) select 3*Self(n-1)+1 else Self(n-1) div 2: n in [1..70]]; // Vincenzo Librandi, Jul 29 2014
CROSSREFS
Cf. A006370.
Row 63 of A347270.
Sequence in context: A098140 A008895 A359563 * A045112 A255568 A143033
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
More terms from Larry Reeves (larryr(AT)acm.org), Apr 27 2001
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 13:38 EDT 2024. Contains 371914 sequences. (Running on oeis4.)