The P2 denominator as a factorial-weighted integer sum
ProvedEulerMascheroni.P2.factorial_binomial_identityformalizationirrationalitynumber-theory
For every integer , the rational denominator sum of the P2 approximation satisfies the exact identity
Thus is a nonnegative integer represented by a factorial-weighted binomial sum. This connects the original approximation coefficients to modular truncation: whenever , terms with vanish modulo .
Preamble
import Definitions.Def_eulerMascheroni_p2Approximation open scoped BigOperators open EulerMascheroni.P2
Formal statement
theorem EulerMascheroni.P2.factorial_binomial_identity (n : ℕ) : (n.factorial : ℚ) * Q n =
((∑ j ∈ Finset.range (n+1),
j.factorial * (n.choose j)^3 * ((2*n-j).choose n)^2 : ℕ) : ℚ) := by sorrySource
Derived auxiliary results for the p=2, x=1 family in Van Assche–Wolfs, Rational approximation of Euler’s constant using multiple orthogonal polynomials, arXiv:2404.09799v3, Section 5, displayed binomial formula for F_(n;2)^(I|p), https://arxiv.org/html/2404.09799v3#S5. The reduced-fraction normalization and conditional subsequence criterion are elementary deductions supplied here, not named statements or arithmetic-saving claims in that paper.