Problem 590
Sets with a given Least Common Multiple
Let H(
E.g.:
The integers in the following ten sets all have a least common multiple of 6:
{2,3}, {1,2,3}, {6}, {1,6}, {2,6}, {1,2,6}, {3,6}, {1,3,6}, {2,3,6} and {1,2,3,6}.
Thus H(6)=10.
Let L(
E.g. L(6) is the least common multiple of the numbers 1,2,3,4,5,6 and L(6) equals 60.
Let HL(
You are given HL(4)=H(12)=44.
Find HL(50000). Give your answer modulo 109.
给定最小公倍数的集合
记H(
例如:
下面这10个集合,其元素的最小公倍数都是6:
{2,3},{1,2,3},{6},{1,6},{2,6},{1,2,6},{3,6},{1,3,6},{2,3,6}和{1,2,3,6}。
因此H(6)=10。
记L(
例如,L(6)表示1,2,3,4,5,6的最小公倍数,因此L(6)等于60。
记HL(
已知HL(4)=H(12)=44。
求HL(50000)。将你的答案对109取余。
Gitalking ...