Python Forum
How can I found how many numbers are there in a Collatz Sequence that I found?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How can I found how many numbers are there in a Collatz Sequence that I found?
#1
I tried to find the longest starting value less than 100,000 in a Collatz Sequence. Actually, I have two questions:

1)Output is 77,031, is this correct?
2)How can I find how many elements are there in the sequence that I found?


def sequence_number(n):
term = 1
while n > 1:
    if n % 2 == 0:
        n = n/2
    else:
        n = 3 * n+1
    term += 1
return term

def starting_number():
t = 0
x = 1
while x < 100000:
    if sequence_number(x) > t:
        t = sequence_number(x)
        value = x
    x += 1

return value

print("It starts with the number:", starting_number())
Reply
#2
If you start with term=0, your sequence length matches that of other sources. You can get the length by calling your sequence_number() function.

start = 77031
length = sequence_number(start)
print(f"Sequence starting at {start} takes {length} steps")
Output:
Sequence starting at 77031 takes 350 steps
That then matches the wikipedia article.
Quote:The longest progression for any initial starting number
...
less than 10^5 is 77031, which has 350 steps,
Reply
#3
(Nov-18-2020, 09:05 PM)bowlofred Wrote: If you start with term=0, your sequence length matches that of other sources. You can get the length by calling your sequence_number() function.

start = 77031
length = sequence_number(start)
print(f"Sequence starting at {start} takes {length} steps")
Output:
Sequence starting at 77031 takes 350 steps
That then matches the wikipedia article.
Quote:The longest progression for any initial starting number
...
less than 10^5 is 77031, which has 350 steps,
Thank you!!!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Upgraded Python: Module no longer found - for Linux Curbie 8 1,324 Mar-05-2025, 06:01 PM
Last Post: Curbie
Question [SOLVED] Upgraded Python: Module no longer found Winfried 1 956 Jan-01-2025, 02:43 PM
Last Post: Larz60+
  [SOLVED] Sub string not found in string ? jehoshua 4 1,343 Dec-03-2024, 09:17 PM
Last Post: jehoshua
  scan network and grab details of hosts found robertkwild 5 1,257 Aug-07-2024, 05:21 PM
Last Post: Larz60+
  Module not found error even though installed NZGeorge 1 4,460 Jul-10-2024, 09:08 AM
Last Post: Larz60+
  Absolute paths in subprocess - file not found kittyticker 4 2,708 Jan-28-2024, 10:37 PM
Last Post: kittyticker
  file open "file not found error" shanoger 8 5,802 Dec-14-2023, 08:03 AM
Last Post: shanoger
  pyside6 module not found ForeverNoob 4 5,614 Aug-18-2023, 04:36 PM
Last Post: snippsat
  I found a problem with Python Lahearle 12 3,303 Jul-20-2023, 10:58 PM
Last Post: Pedroski55
  [SOLVED] [BeautifulSoup] Why attribute not found? Winfried 0 1,244 Mar-11-2023, 10:00 PM
Last Post: Winfried

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020