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!)
A008873 3x+1 sequence starting at 97. 4

%I #25 Sep 08 2022 08:44:36

%S 97,292,146,73,220,110,55,166,83,250,125,376,188,94,47,142,71,214,107,

%T 322,161,484,242,121,364,182,91,274,137,412,206,103,310,155,466,233,

%U 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

%N 3x+1 sequence starting at 97.

%D R. K. Guy, Unsolved Problems in Number Theory, E16.

%H T. D. Noe, <a href="/A008873/b008873.txt">Table of n, a(n) for n=0..118</a>

%H <a href="/index/3#3x1">Index entries for sequences related to 3x+1 (or Collatz) problem</a>

%p f := proc(n) option remember; if n = 0 then 97; elif f(n-1) mod 2 = 0 then f(n-1)/2 else 3*f(n-1)+1; fi; end;

%t NestList[If[EvenQ[#], #/2, 3# + 1]&, 97, 100] (* _Vincenzo Librandi_, Jul 29 2014 *)

%o (Haskell)

%o a008873 n = a008873_list !! n

%o a008873_list = 97 : iterate a006370 97

%o -- _Reinhard Zumkeller_, Aug 30 2012

%o (Magma) [n eq 1 select 97 else IsOdd(Self(n-1)) select 3*Self(n-1)+1 else Self(n-1) div 2: n in [1..80]]; // _Vincenzo Librandi_, Jul 29 2014

%Y Cf. A006370.

%Y Row 97 of A347270.

%K nonn

%O 0,1

%A _N. J. A. Sloane_.

%E More terms from Larry Reeves (larryr(AT)acm.org), Apr 27 2001

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 August 28 06:46 EDT 2024. Contains 375477 sequences. (Running on oeis4.)