829. Integral Fusion

Given any integer n>1 a binary factor tree T(n) is defined to be:

For example T(20):

We define M(n) to be the smallest number that has a factor tree identical in shape to the factor tree for n!!, the double factorial of n.

For example, consider 9!!=9×7×5×3×1=945. The factor tree for 945 is shown below together with the factor tree for 72 which is the smallest number that has a factor tree of the same shape. Hence M(9)=72.

Find n=231M(n).

829. 整数合成

对于任意整数 n>1,其二叉因子树 T(n) 定义如下:

如下图为 T(20)

M(n) 为满足如下条件的最小整数:该数的二叉因子树与 n!!n 的双阶乘)的二叉因子树形状完全一致。如下图,n=9 时,9!!=9×7×5×3×1=945945 的二叉因子树与 72 的二叉因子树形状完全一致,而且 72 是满足此条件的最小正整数,故 M(9)=72

n=231M(n)


这个链接 回到源站。

这个链接 回到详细版题目目录。