Skip to content

Commit f0a4e23

Browse files
Khansa435felixperneggerPaul-Lez
authored
feat: Gourevitch conjecture (google-deepmind#1883)
Fixes google-deepmind#1828 This PR formalizes Gourevitch's series identity. Statement: ∑' n, ((1 + 14 n + 76 n^2 + 168 n^3) / 2^(20 n)) * (Nat.centralBinom n)^7 = 32 / π^3 Details: - Adds theorem `gourevitch_series_identity` - Uses `Nat.centralBinom` for binomial coefficient formulation - Categorized under `research solved` and `AMS 11 33` - Includes literature references References: - Guillera (2003), Experimental Mathematics - Au (2025), Journal of Symbolic Computation --------- Co-authored-by: Felix Pernegger <s59fpern@uni-bonn.de> Co-authored-by: Paul Lezeau <paul.lezeau@gmail.com>
1 parent 2bb6509 commit f0a4e23

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/-
2+
Copyright 2026 The Formal Conjectures Authors.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
https://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
-/
16+
17+
import FormalConjectures.Util.ProblemImports
18+
19+
/-!
20+
# Gourevitch's series identity
21+
22+
*References:*
23+
- [About a New Kind of Ramanujan-Type Series](https://doi.org/10.1080/10586458.2003.10504518) by *Jesús Guillera*
24+
- [G2003] Guillera, Jesús. "About a new kind of Ramanujan-type series." Experimental Mathematics 12.4 (2003): 507-510.
25+
- [A2025] Au, Kam Cheong. "Wilf-Zeilberger seeds and non-trivial hypergeometric identities." Journal of Symbolic Computation 130 (2025): 102421. [arXiv:2312.14051](https://arxiv.org/abs/2312.14051)
26+
-/
27+
28+
namespace Gourevitch
29+
30+
31+
/-- The Gourevitch series identity:
32+
The following idenitity holds:
33+
$\sum_{n=0}^{\infty} \frac{1 + 14 n + 76 n^2 + 168 n^3}{2^{20 n}} \binom{2n}{n}^7 = \frac{32}{\pi^3}.$
34+
This was originally conjectured in [G2003] by Guillera and proven in [A2025] by Au.
35+
-/
36+
@[category research solved, AMS 11 33]
37+
theorem gourevitch_series_identity :
38+
∑' n : ℕ, ((1 + 14 * n + 76 * n ^ 2 + 168 * n ^ 3) / (2 ^ (20 * n)) : ℝ)
39+
* Nat.centralBinom n ^ 7 = 32 / (Real.pi ^ 3) := by
40+
sorry
41+
42+
end Gourevitch

0 commit comments

Comments
 (0)