Блог пользователя TahsinEnesKuru

Автор TahsinEnesKuru, история, 6 лет назад, По-английски

What is the upper bound of total number of divisors of divisors of a number ?

  • Проголосовать: нравится
  • +41
  • Проголосовать: не нравится

»
6 лет назад, # |
  Проголосовать: нравится +28 Проголосовать: не нравится

If a is divisor of x and y and both x and y are divisors of z, do you count a twice?

  • »
    »
    6 лет назад, # ^ |
      Проголосовать: нравится +6 Проголосовать: не нравится

    yes

    • »
      »
      »
      6 лет назад, # ^ |
      Rev. 3   Проголосовать: нравится -10 Проголосовать: не нравится

      then you may consider the upper bound to be , as the upper bound on number of divisors is (verified upto n = 1018)

      • »
        »
        »
        »
        6 лет назад, # ^ |
          Проголосовать: нравится +8 Проголосовать: не нравится

        But where does come from? Do you assume that divisors of n are of magnitude ? That isn't true.

      • »
        »
        »
        »
        6 лет назад, # ^ |
        Rev. 3   Проголосовать: нравится +28 Проголосовать: не нравится

        Let f(n) be the number of divisors of divisors of n. If we are going to use a bound for d(n), we may use the identity:

        where rad(n) and ω(n) are the product and the number of distinct prime divisors of n, respectively. That formula can be obtained by noting that f is multiplicative (being the Dirichlet convolution of d and 1, or the triple Dirichlet convolution of 1), and multiplying everything after getting .

        Now, using the simple estimate

        (which comes from the fact that

        d(n) = (α1 + 1)·...·(αω(n) + 1)

        and increasing each term by 1 multiplies each bracket by at most 3/2)

        we get

        According to the last column of this table, talking only "competitive programming numbers" into account: this bound is better than the trivial

        bound by ~ an order of magnitude, but should also not be very far from the truth - the worst cases have several prime factors, with only the exponent on the prime number $2$ being significant.

        Of course, the asymptotic behaviour of d(n) has already been well-explained here, and even better on What's New. I couldn't obtain a real-world bound using this kind of approach, though.

        Also,

        Unable to parse markup [type=CF_TEX]

        is buggy here. I think there is a problem with parsing the comments.
»
6 лет назад, # |
Rev. 3   Проголосовать: нравится +28 Проголосовать: не нравится

if your purpose is not mathematical , you can approximately find by using brute force (I mean , you don't have a time limit in your computer)