原题:
//合数是与质数(也叫素数)相对应的概念,即除了1和本身之外,还可以被其它正整数整除的数称为合数。
//奇合数:既是合数又是奇数的数称为奇合数。例如:9,15,21等等都是奇合数。
It was proposed by Christian Goldbach that every odd composite number can be written as
the sum of a prime and twice a square.
9 = 7 + 2*(1*1)
15 = 7 + 2*(2*2)
21 = 3 + 2*(3*3)
25 = 7 + 2*(3*3)
27 = 19 + 2*(2*2)
33 = 31 + 2*(1*1)
It turns out that the conjecture was false.
What is the smallest odd composite that cannot be written as the sum of a prime and
twice a square?
代码如下: