/- Copyright 2026 The Formal Conjectures Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -/ import FormalConjecturesUtil

Asymptotics of an inner sum formula for $a(n)$

The inner sum of the formula used in a: $$\sum_{\max(k-n+5, 0) \le j \le \min(k,4)} \binom{8-j}{j}\binom{2n-k+j-10}{k-j}$$

a: A total of $n$ married couples, including a mathematician M and his wife, are to be seated at the $2n$ chairs around a circular table, with no man seated next to his wife. After the ladies are seated at every other chair, M is the first man allowed to choose one of the remaining chairs. The sequence gives the number of ways of seating the other men, with no man seated next to his wife, if M chooses the chair that is 9 seats clockwise from his wife's chair.

$$a(n) = \begin{cases} 0 & \text{if } n \le 5 \cr \sum_{k=0}^{n-1}(-1)^k(n-k-1)! \sum_{\max(k-n+5, 0) \le j \le \min(k,4)} \binom{8-j}{j}\binom{2n-k+j-10}{k-j} & \text{if } n > 5 \end{cases}$$

References:

    A258667

    arxiv/2605.22763 Advancing Mathematics Research with AI-Driven Formal Proof Search by George Tsoukalas et al.

namespace OeisA258667open scoped Topologyopen BigOperators Nat Int Real Asymptotics Filter

The inner sum of the formula used in a: $$\sum_{\max(k-n+5, 0) \le j \le \min(k,4)} \binom{8-j}{j}\binom{2n-k+j-10}{k-j}$$

private def inner_sum (n k : ) : := let L : := max 0 (k + 5 - n) let U : := min k 4 Finset.sum (Finset.Icc L U) fun j => let term1 := Nat.choose (8 - j) j -- The top argument of the second binomial coefficient is written in Nat subtraction form. let term2 := Nat.choose (2 * n + j - (k + 10)) (k - j) ofNat term1 * ofNat term2

a: A total of $n$ married couples, including a mathematician M and his wife, are to be seated at the $2n$ chairs around a circular table, with no man seated next to his wife. After the ladies are seated at every other chair, M is the first man allowed to choose one of the remaining chairs. The sequence gives the number of ways of seating the other men, with no man seated next to his wife, if M chooses the chair that is 9 seats clockwise from his wife's chair.

$$a(n) = \begin{cases} 0 & \text{if } n \le 5 \cr \sum_{k=0}^{n-1}(-1)^k(n-k-1)! \sum_{\max(k-n+5, 0) \le j \le \min(k,4)} \binom{8-j}{j}\binom{2n-k+j-10}{k-j} & \text{if } n > 5 \end{cases}$$

def a (n : ) : := if n 5 then 0 else (Finset.sum (Finset.range n) fun k => let sign : := if k % 2 = 0 then 1 else -1 -- Nat.factorial (n - 1 - k) is safe since h implies n > 5 and k < n. let fac_term : := ofNat (Nat.factorial (n - 1 - k)) sign * fac_term * inner_sum n k ).natAbsnoncomputable def natFacToReal (n : ) : := (Nat.factorial n : )

The denominator term $k! (n-1)_k$ represented as a Real number.

noncomputable def menageDenomTerm (n k : ) : := let k_fac_R := natFacToReal k -- (n-1)_k is the falling factorial. Nat.descFactorial (n-1) k is (n-1)!/(n-1-k)! let falling_fac := (Nat.descFactorial (n - 1) k : ) k_fac_R * falling_fac

The infinite series part of the asymptotic expansion: $\sum_{k \ge 1} \frac{(-1)^k}{k!(n-1)_k}$.

noncomputable def asymptoticSumPart (n : ) : := -- The sum is effectively finite since (n-1)_k is 0 for k >= n. Finset.sum (Finset.range n) fun k => if k = 0 then 0 else let denom := menageDenomTerm n k -- Denominator is non-zero if n >= 1 and 1 <= k < n. if denom = 0 then 0 else ((-1 : ) ^ k) / denom

The proposed asymptotic expression for a(n).

noncomputable def asymptoticTerm (n : ) : := if n 2 then 0 -- Avoid division by zero, irrelevant for n -> infinity else let n_R : := n let n_fac_R := natFacToReal n let prefactor : := exp (-2) * (n_fac_R / (n_R - 2)) prefactor * (1 + asymptoticSumPart n)@[category test, AMS 11] lemma a_1 : a 1 = 0 := a 1 = 0 All goals completed! 🐙@[category test, AMS 11] lemma a_2 : a 2 = 0 := a 2 = 0 All goals completed! 🐙@[category test, AMS 11] lemma a_3 : a 3 = 0 := a 3 = 0 All goals completed! 🐙@[category test, AMS 11] lemma a_4 : a 4 = 0 := a 4 = 0 All goals completed! 🐙@[category test, AMS 11] lemma a_5 : a 5 = 0 := a 5 = 0 All goals completed! 🐙

Conjecture: $a(n) \sim e^{-2} \cdot n! / (n-2)$.

A formal proof has been found with the methods described in arxiv/2605.22763.

@[category research solved, AMS 11, formal_proof using formal_conjectures at "https://github.com/mo271/formal-conjectures/blob/a32396489dcb8f86c3549b93aa358ac6a10a3a1f/FormalConjectures/OEIS/258667.wip.lean#L427"] theorem a_is_equivalent_asymptoticTerm : IsEquivalent atTop (fun n : => (a n : )) asymptoticTerm := (fun n (a n)) ~[atTop] asymptoticTerm All goals completed! 🐙end OeisA258667