Fixed-modulus truncation of the factorial-binomial Euler coefficient
ProvedEulerMascheroni.P2.factorial_binomial_truncationcongruenceseuler-mascheronifactorials
Put
For any natural modulus and cutoff such that , one has
Every omitted term is divisible by . Reindexing identifies with
the integer coefficient attached to the order-two family in Van Assche–Wolfs, Section 5. The reindexing identity is explanatory context; the formal statement is the displayed congruence.
For a fixed prime power , the cutoff depends only on , not on . This permits an explicit finite rational-diagonal representation modulo and connects the coefficient sequence to automatic congruence methods. Those additional representation and automaticity arguments are not asserted as Lean dependencies or conclusions of this theorem. This elementary lemma does not prove any irrationality assertion.
Preamble
import Mathlib.Algebra.BigOperators.ModEq import Mathlib.Data.Nat.Choose.Basic import Mathlib.Tactic open scoped BigOperators
Formal statement
theorem EulerMascheroni.P2.factorial_binomial_truncation (n q J : ℕ) (h : q ∣ J.factorial) :
(∑ j ∈ Finset.range (n+1),
j.factorial * (n.choose j)^3 * ((2*n-j).choose n)^2) ≡
(∑ j ∈ Finset.range (min (n+1) J),
j.factorial * (n.choose j)^3 * ((2*n-j).choose n)^2) [MOD q] := by sorrySource
Elementary factorial divisibility, derived for the integer coefficient of the order-two family in Van Assche–Wolfs, Rational approximation of Euler’s constant using multiple orthogonal polynomials, Section 5, https://arxiv.org/html/2404.09799v3. Motivation: Rowland–Yassawi, Automatic congruences for diagonals of rational functions, Theorem 2.1, https://www.numdam.org/item/10.5802/jtnb.901.pdf. The congruence is derived here, not quoted as a theorem of either paper; no bibliographic novelty is claimed.