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!)
A224254 Full cycle lengths in the Collatz (3x+1) problem when the negative integers are used. 2
2, 2, 2, 2, 5, 2, 5, 2, 5, 5, 2, 2, 5, 5, 2, 2, 18, 5, 5, 5, 18, 2, 18, 2, 18, 5, 5, 5, 2, 2, 18, 2, 18, 18, 5, 5, 18, 5, 2, 5, 18, 18, 2, 2, 18, 18, 5, 2, 18, 18, 5, 5, 2, 5, 18, 5, 2, 2, 2, 2, 18, 18, 5, 2, 2, 18, 18, 18, 2, 5, 2, 5, 18, 18, 5, 5, 2, 2, 2, 5, 5 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
There are other cycles of lengths 2, 5 and 18 if negative integers are used. In Z, it is conjectured that the five values of cycle are 1, 2, 3, 5 and 18 (see A121510).
LINKS
EXAMPLE
a(1) = 2 because the cycle -1 -> -2 -> -1... contains 2 distinct terms;
a(5) = 5 because the cycle -5 -> -14 -> -7->-20 -> -5 ... contains 5 distinct terms;
a(17) = 18 because the cycle -17 -> -50 -> -25->-74 -> -37 -> -110 -> -55->-164 -> -82 -> -41 -> -122->-61 -> -182 -> -91 -> -272->-136 -> -68 -> -34 -> -17... contains 18 distinct terms.
PROG
(Python)
import sympy
def A224254(n):
return next(sympy.cycle_length(lambda x:3*x+1 if x%2 else x//2, -n))[0] # Pontus von Brömssen, Jan 24 2021
CROSSREFS
Sequence in context: A362034 A154097 A221491 * A107604 A080647 A324516
KEYWORD
nonn
AUTHOR
Michel Lagneau, Apr 02 2013
EXTENSIONS
Data corrected by Pontus von Brömssen, Jan 24 2021
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 25 05:18 EDT 2024. Contains 371964 sequences. (Running on oeis4.)