wz-apery-order-two
- Kind
- witness-replay
- Status
- checked
Supports: an order-TWO creative-telescoping certificate for the deepest summand this route has reached, replayed by a checker that shares no code with the search that produced it
cargo test -p axeyum-cas --test telescoping_identities apery_numbers_get_aperys_own_recurrence Evidence notes
This summand DECLINED before the multivariate GCD moved out of i128, and the reason was measured rather than guessed: the derived degree bound is 2, which is exactly where the certificate lives, so the search design was never at fault. What failed was the primitive pseudo-remainder sequence reducing the degree-8 shift quotient -- `MvPoly::gcd_cost` reports that sequence passing through a 4187-bit coefficient, against the 127 bits an i128 numerator holds, to produce a GCD whose own coefficients fit in three. The search now finds the certificate in 90 ms. The test also replays the recurrence against the Apery numbers 1, 5, 73, 1445, 33001, 819005, 21460825 in i128 arithmetic, which is a check separate from the certificate. One detail of the check options is load-bearing and deliberate: the summation window starts at k = 0 rather than at a negative k, because at n = 0 the summand is not evaluable at a negative k (C(n+k,k) becomes C(-1,-1)) and the checker refuses a window edge it cannot evaluate. The certificate numerator carries a factor k^4, so the telescoped term still vanishes at that edge, which is what the boundary layer requires.