Open-access mathematical research insights
About Contact
Home / Ideas

The Robin Criterion and Extremal Divisor Growth Patterns

An investigation into the elementary equivalence of the Riemann Hypothesis through the sum-of-divisors function and colossally abundant numbers as discussed in arXiv:hal-04332705.


Download Full Article

This article is available as a downloadable PDF with complete code listings and syntax highlighting.

Download PDF Version

Understanding the Robin Criterion

The Riemann Hypothesis remains the most significant unsolved problem in pure mathematics, asserting that all non-trivial zeros of the Riemann zeta function ζ(s) lie on the critical line Re(s) = 1/2. While this is often viewed through the lens of complex analysis, a parallel track exists in elementary number theory. This track translates the analytic properties of ζ(s) into growth constraints on arithmetic functions, most notably the sum-of-divisors function σ(n). The research in arXiv:hal-04332705 provides a rigorous examination of these elementary equivalents, specifically focusing on Robin’s inequality.

In 1984, Guy Robin proved that the Riemann Hypothesis is equivalent to the assertion that the ratio σ(n) / (n log log n) is strictly less than eγ for all n > 5040, where γ is the Euler-Mascheroni constant. The paper arXiv:hal-04332705 extends this inquiry, dissecting the "Robin ratio" and investigating the specific numerical thresholds where the inequality might be challenged by highly composite numbers.

Mathematical Foundations of Divisor Growth

To understand the contribution of arXiv:hal-04332705, we must define the core mathematical objects. The sum-of-divisors function, σ(n), is defined as the sum of all positive divisors of n. For an integer n with a prime factorization, this function grows according to the density of its prime factors. A central object of study is the ratio f(n) = σ(n)/n. Gronwall's Theorem established that the maximal order of this ratio is governed by eγ log log n.

Technical Analysis of the Robin Ratio

The core of the analysis in arXiv:hal-04332705 revolves around the refined estimation of the Robin ratio for extremely large n. The paper investigates the "slack" in Robin's inequality, which is the difference between the theoretical bound and the actual values of the function.

Under the assumption of the Riemann Hypothesis, the error term in the Prime Number Theorem is O(x1/2 log x). This error term translates directly into the bound for the Robin ratio. The analysis shows that the ratio approaches the threshold from below. However, if the Riemann Hypothesis were false, there would exist a zero off the critical line, which would introduce an oscillatory term. For sufficiently large n, this oscillation would cause the sum-of-divisors function to exceed the Robin bound, providing a counterexample to the hypothesis.

Novel Research Pathways

The analysis of arXiv:hal-04332705 opens several promising avenues for future research:

Computational Implementation

The following Wolfram Language code demonstrates the relationship between the growth of the sum-of-divisors function and the theoretical threshold established by the Robin criterion. It also visualizes the distribution of the first few Riemann zeros to highlight the spectral connection.

(* Section: Robin Ratio and Zeta Zero Analysis *)
(* Purpose: Compare the growth of sigma(n) with the Robin threshold and visualize zeta zeros *)

Module[{
  robinRatio, 
  robinConstant, 
  primorials, 
  zetaZeros, 
  nLimit = 50
},
  (* Define the Robin ratio function *)
  robinRatio[n_] := DivisorSigma[1, n] / (n * Log[Log[n]]);
  robinConstant = Exp[EulerGamma];

  (* Generate primorials as candidates for extremal values *)
  primorials = Table[Product[Prime[i], {i, 1, k}], {k, 3, nLimit}];

  (* Calculate the first 10 non-trivial zeros of the Zeta function *)
  zetaZeros = Table[Im[ZetaZero[k]], {k, 1, 10}];

  (* Create a plot of the Robin ratio vs the e^gamma threshold *)
  robinPlot = ListLinePlot[
    Table[{Log[Log[p]], robinRatio[p]}, {p, primorials}],
    PlotRange -> All,
    GridLines -> {None, {robinConstant}},
    PlotStyle -> Blue,
    Frame -> True,
    FrameLabel -> {"log log n", "sigma(n)/(n log log n)"},
    PlotLabel -> "Robin Ratio Convergence"
  ];

  (* Visualize the spacing of the first few Zeta zeros *)
  zeroPlot = ListPlot[
    zetaZeros,
    Filling -> Axis,
    PlotLabel -> "Im Parts of First 10 Zeta Zeros",
    Frame -> True
  ];

  (* Return the combined results *)
  Print["Robin Constant (e^gamma): ", robinConstant];
  Print["Max Ratio Found in Primorials: ", Max[Table[robinRatio[p], {p, primorials}]]];
  {robinPlot, zeroPlot}
]

Conclusions

The investigation into Robin's inequality, as detailed in arXiv:hal-04332705, reinforces the deep structural link between the distribution of prime numbers and the growth of the sum-of-divisors function. By translating the Riemann Hypothesis into an elementary inequality, researchers can utilize the tools of discrete mathematics to probe the limits of the zeta function's behavior.

The most promising avenue for further research lies in the refined analysis of colossally abundant numbers. These integers serve as the interface between the continuous world of complex analysis and the discrete world of arithmetic. Tighter explicit bounds for the error terms in Mertens' theorems remain the primary target for those seeking to bridge the gap between small-scale numerical verification and an absolute proof of the hypothesis.

References

Stay Updated

Get weekly digests of new research insights delivered to your inbox.