0%

Problem 881


Problem 881


Divisor Graph Width

For a positive integer n create a graph using its divisors as vertices. An edge is drawn between two vertices a<b if their quotient b/a is prime. The graph can be arranged into levels where vertex n is at level 0 and vertices that are a distance k from n are on level k. Define g(n) to be the maximum number of vertices in a single level.

0881_example45.jpg

The example above shows that g(45)=2. You are also given g(5040)=12.

Find the smallest number, n, such that g(n)104.


约数图宽度

对于正整数n,以其约数为顶点构造图。若两个顶点a<b的商b/a是质数,则连接这两个顶点。该图可以分成多层,其中顶点n在第0层,而距离n的距离为k的顶点则位于第k层。记g(n)为该图中任意一层的顶点数的最大值。

0881_example45.jpg

如上所示可知g(45)=2。已知g(5040)=12

求最小的、满足g(n)104n


Gitalking ...