An unsolved problem: a simple sequence

An unsolved problem: a simple sequence

A simple sequence has been puzzling the smartest mathematicians for almost a century, since it was proposed by Collatz in 1937. It is also known as Collatz Conjecture. The sequence is simply defined as
a n = { a n − 1 / 2 if  a n − 1  is even 3 ∗ a n − 1 + 1 if  a n − 1  is odd a_{n} = \begin{cases} a_{n-1}/2 &\text{if } a_{n-1} \text{ is even} \\ 3*a_{n-1}+1 &\text{if } a_{n-1} \text{ is odd} \end{cases} an={an1/23an1+1if an1 is evenif an1 is odd
We can start with any natural numbers to calculate the sequence. For example, let’s start with a0=10, we can get a sequence (10, 5, 16, 8, 4, 2, 1). You can try some other numbers with the python code below.

def collatz(a):
	if a % 2 == 0:
		return int(a / 2)
	else:
		return 3 * a + 1

a = 27
print(a)
while (a > 1):
	a = collatz(a)
	print(a)

You may realize that the last number is always 1. In general, no matter which natural number we start with, we can always come to the cycle (4, 2, 1). In other words, we can always end with 1. This is the Collatz Conjecture.

The following table gives us some simple sequences starting with the first simple numbers.

a0a0, a1, a2, …
11
22, 1
33, 10, 5, 16, 8, 4, 2, 1
44, 2, 1
55, 16, 8, 4, 2, 1
66, 3, 10, 5, 16, 8, 4, 2, 1
77, 22, 11, 34, 17, 52, 26, 13, 40, 20, 10, 5, 16, 8, 4, 2, 1
88, 4, 2, 1
99, 28, 14, 7, 22, 11, 34, 17, 52, 26, 13, 40, 20, 10, 5, 16, 8, 4, 2, 1
1010, 5, 16, 8, 4, 2, 1

27 is a magic number for us to start with. If we start with 27, we can get a long sequence (27, 82, 41, 124, 62, 31, 94, 47, 142, 71, 214, 107, 322, 161, 484, 242, 121, 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, 3238, 1619, 4858, 2429, 7288, 3644, 1822, 911, 2734, 1367, 4102, 2051, 6154, 3077, 9232, 4616, 2308, 1154, 577, 1732, 866, 433, 1300, 650, 325, 976, 488, 244, 122, 61, 184, 92, 46, 23, 70, 35, 106, 53, 160, 80, 40, 20, 10, 5, 16, 8, 4, 2, 1). Is it interesting?

Although it’s easy and obvious to calculate the simple sequence, we don’t have any convincing proof yet until today.

Many mathematicians try to find a counterexample by using modern computers. Till now, the natural numbers from 1 to 19*258(5,476,377,146,882,523,136) have been calculated, and no counterexample has been found yet.

The numbers of the sequence is also called hailstone numbers, because a hailstone goes up and down in the cloud, and finally falls to the ground.

Because of the difficulty in proving the problem, some mathematician commented that “mathematics is not yet ready for such problems”. We don’t know when we will prove the problem. Maybe you are the one who prove it.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值