A One-Parameter Family of Wallis-Type Polynomial Continued Fractions: Discovery and Formal Verification
This repository includes the reproducibility materials for the manuscript tex/wallis_formal_verification_submission.tex, which proves the one-parameter family
S^(m) = 1 + K_{n>=1} [-n(2n-(2m+1)) / (3n+1)] = 2^(2m+1) / (pi * binom(2m,m)).
The result is supported by a zero-sorry Lean 4 proof chain in lean/WallisFamily.lean, LaTeX source in tex/, and 1000-digit numerical certification produced by python/verify_wallis_family.py.
| Path | Purpose |
|---|---|
lean/ |
Lean 4 source and project files for the formal proof |
python/ |
Numerical verification scripts |
tex/ |
LaTeX source for the submission manuscript |
results/ |
Saved certification and search outputs |
cd lean
lake exe cache get
lake env lean WallisFamily.leanThe audit commands at the bottom of WallisFamily.lean check the certified chain
intertwining_lemma, ratio_step_m0, limit_step, and theorem1_closed_form.
python -m venv .venv
.venv\Scripts\activate
pip install -r requirements.txt
python python/verify_wallis_family.py --dps 1100 --depth 9000 --max-m 20 --json results/wallis_family_certification.jsonOptional follow-up scan for the third-order negative results:
python _third_order_wallis_scan.py --workers 8 --range 3 --depth 250@misc{wallis-formal-verification-2026,
title = {A One-Parameter Family of Wallis-Type Polynomial Continued Fractions: Discovery and Formal Verification},
author = {Anonymous},
year = {2026},
note = {Lean 4 formalization, numerical scripts, and LaTeX source available in this repository}
}The arXiv link will be added here once the preprint is posted.
Discover new mathematical identities automatically. An AI-powered engine that generates Ramanujan-style conjectures by searching polynomial continued fractions (PCFs), matching values to known constants via PSLQ, and verifying at 200+ digit precision — ready for integration with LLM research agents.
Inspired by the Ramanujan Machine's algorithmic conjecture discovery, this project adds LLM-driven creative generation and seamless integration with modern AI research agents like gpt-researcher and RD-Agent.
When creating the repository, add these topics for discoverability:
research · mathematics · ramanujan · ai-research · mathematical-discovery · symbolic-computation · number-theory · llm-agent · continued-fractions · conjecture-generation
Srinivasa Ramanujan's genius lay in discovering extraordinary identities—formulas connecting fundamental constants like π, e, ζ(3), and the golden ratio through continued fractions, infinite series, and modular forms. This tool automates that style of discovery by combining:
- Polynomial Continued Fractions (PCFs) — parameterized by polynomial numerator
a(n)and denominatorb(n), evaluated to arbitrary precision via bottom-up convergent computation. - PSLQ / Integer Relation Detection — matching CF values against a library of 25+ mathematical constants (π, log 2, √2, Catalan's constant, ζ(3), Gamma values, …).
- Evolutionary Search — genetic algorithm with tournament selection, crossover, Gaussian mutation, and adaptive temperature control to explore the space of polynomial coefficients.
- High-Precision Verification — every candidate match is re-verified at 200+ digit precision to eliminate false positives.
A generalized continued fraction is:
When a(n) and b(n) are polynomials in n, these are called Polynomial Continued Fractions (PCFs). The classical examples include:
| PCF | Value | Source |
|---|---|---|
a(n) = n², b(n) = 2n-1 |
4/π | Brouncker (1656) |
a(n) = -n³, b(n) = (2n-1)(n²+n-1) |
ζ(3) | Apéry (1979) |
a(n) = -2n²+(2m+1)n, b(n) = 3n+1 |
S^(m) ∝ 1/π | This work |
The generator searches for new PCFs matching known (or unknown) constants.
# Clone the repository
git clone https://github.com/ramanujan-breakthrough/ramanujan-breakthrough-generator.git
cd ramanujan-breakthrough-generator
# Create virtual environment (recommended)
python -m venv .venv
source .venv/bin/activate # Linux/macOS
# or: .venv\Scripts\activate # Windows
# Install core dependencies
pip install -e .
# Or install from requirements.txt
pip install -r requirements.txt- Python 3.10+
- mpmath ≥ 1.2 (arbitrary-precision arithmetic)
- sympy ≥ 1.11 (symbolic computation, optional but recommended)
# Run 30 evolutionary cycles with default settings
python ramanujan_breakthrough_generator.py --cycles 30 --seed 42
# Target a specific constant (e.g., Catalan's constant)
python ramanujan_breakthrough_generator.py --cycles 50 --target catalan --precision 80
# Exhaustive coefficient sweep (small coefficients, thorough)
python ramanujan_breakthrough_generator.py --mode cmf --deg-alpha 2 --deg-beta 1 --coeff-range 3
# Degree-restricted random search
python ramanujan_breakthrough_generator.py --mode dr --deg-alpha 3 --deg-beta 2 --cycles 100
# Generate a family report from existing discoveries
python ramanujan_breakthrough_generator.py --report
# High-precision run with verification
python ramanujan_breakthrough_generator.py --cycles 50 --precision 100 --verify-prec 300from ramanujan_breakthrough_generator import (
build_constants, eval_pcf, seed_population, evaluate_population,
pslq_match, verify_match_high_precision, cluster_discoveries,
)
from mpmath import mp
mp.dps = 80
# Evaluate a specific continued fraction
val = eval_pcf([0, 3, -2], [1, 3], depth=500)
print(f"CF value: {val}") # Should be close to 4/pi
# Build constant library and match
constants = build_constants(80)
match = pslq_match(val, constants, tol_digits=20)
if match:
print(f"Matched: {match[0]}")
# Verify at high precision
verified, digits = verify_match_high_precision(
[0, 3, -2], [1, 3], "4/pi", constants,
verify_prec=200, verify_depth=1000
)
print(f"Verified: {verified} ({digits:.0f} digits)")from research_integration import ContextualBreakthroughGenerator
gen = ContextualBreakthroughGenerator(precision=80, seed=42)
# Feed in research context to guide search
results = gen.discover(
context="Recent work by Zudilin on Apéry-like sequences suggests "
"cubic numerators a(n)=n³+cn may yield new ζ(3) representations.",
target="zeta3",
num_formulas=10,
cycles=50,
)
for r in results:
print(f" a={r['a_coeffs']}, b={r['b_coeffs']} -> {r['match']} ({r['verified_digits']:.0f}d)")| Mode | Flag | Description |
|---|---|---|
| Evolve | --mode evolve |
Genetic algorithm with adaptive temperature (default) |
| DR | --mode dr |
Degree-restricted random sampling |
| CMF | --mode cmf |
Exhaustive coefficient sweep (Conservative Matrix Field) |
The generator searches against 25+ mathematical constants:
| Constant | Symbol | Value (approx) |
|---|---|---|
| π | pi |
3.14159265… |
| 4/π | 4/pi |
1.27323954… |
| log 2 | log2 |
0.69314718… |
| √2 | sqrt2 |
1.41421356… |
| Golden ratio φ | phi |
1.61803398… |
| Euler-Mascheroni γ | euler_g |
0.57721566… |
| Apéry's constant ζ(3) | zeta3 |
1.20205690… |
| Catalan's constant G | catalan |
0.91596559… |
| Γ(1/4) | Gamma_1_4 |
3.62560990… |
| … | (and 15+ more) |
The Pi Family discovered by this engine:
a_m(n) = -2n² + (2m+1)n, b(n) = 3n + 1
m=0: CF -> 2/π (Brouncker-type)
m=1: CF -> 4/π (Novel)
m=2: CF -> 16/(3π) (Novel)
m=3: CF -> 32/(5π) (Novel)
Verification with SymPy:
from mpmath import mp, mpf, pi
mp.dps = 50
from ramanujan_breakthrough_generator import eval_pcf
# m=1 member: a(n) = 3n - 2n², b(n) = 3n + 1
val = eval_pcf([0, 3, -2], [1, 3], depth=1000)
target = 4 / pi
residual = abs(val - target)
print(f"|CF - 4/π| = {residual}") # ~1e-50| File | Description |
|---|---|
ramanujan_discoveries.jsonl |
Append-only log of all discoveries (JSON Lines) |
ramanujan_state.json |
Checkpoint for resuming interrupted runs |
Each discovery record contains:
{
"cycle": 7,
"a": [0, 3, -2],
"b": [1, 3],
"value": "1.2732395447351626862…",
"match": "4/pi",
"residual": -49.3,
"verified_digits": 160.0,
"complexity": 4.2,
"timestamp": "2026-04-07T12:00:00"
}See research_integration.py for plug-and-play adapters for:
- gpt-researcher — feed web-sourced math papers as context
- Microsoft RD-Agent — structured hypothesis → experiment → evaluation loop
- Khoj — personal knowledge base integration
- Custom agents — simple
discover(context, target)API
# pip install gpt-researcher
from gpt_researcher import GPTResearcher
from research_integration import gpt_researcher_adapter
# Step 1: Research a mathematical topic
researcher = GPTResearcher(
query="recent advances in continued fraction representations of zeta(3)",
report_type="research_report",
)
report = await researcher.conduct_research()
# Step 2: Feed the report into the breakthrough generator
discoveries = gpt_researcher_adapter(report, target="zeta3", num_formulas=5)
# Step 3: Inspect results
for d in discoveries:
print(f" a={d['a_coeffs']}, b={d['b_coeffs']} -> {d['match']}")
print(f" verified: {d['verified_digits']:.0f} digits")from research_integration import rd_agent_adapter
result = rd_agent_adapter(
hypothesis="Quadratic PCFs with b(n)=3n+1 produce rational multiples of 1/pi",
experiment_config={
"target": "pi",
"cycles": 50,
"precision": 80,
},
)
print(f"Verified: {result['verified_count']} / {len(result['discoveries'])}")
print(result['summary'])from research_integration import discover
results = discover(
context="Apéry-like cubic numerators for zeta(3)",
target="zeta3",
num_formulas=5,
cycles=30,
style="apery",
)
for r in results:
print(f" {r['match']}: a={r['a_coeffs']}, b={r['b_coeffs']}")├── ramanujan_breakthrough_generator.py # Core discovery engine
├── research_integration.py # Research agent adapters
├── irrationality_toolkit.py # Irrationality proof toolkit
├── tests/
│ ├── test_breakthrough_generator.py # Unit tests for the generator
│ └── test_phase2.py # PCF analysis tests
├── pyproject.toml # Package metadata & dependencies
├── requirements.txt # Pinned dependencies
├── LICENSE # MIT License
├── .gitignore
└── README.md
If you use this tool in academic work, please cite:
@software{ramanujan_breakthrough_generator,
title = {Ramanujan Breakthrough Generator: Self-Iterating PCF Discovery Engine},
year = {2026},
url = {https://github.com/ramanujan-breakthrough/ramanujan-breakthrough-generator},
note = {Automated discovery of polynomial continued fraction identities
via evolutionary search and PSLQ integer relation detection}
}- Ramanujan Machine (GitHub) — Technion project for automated conjecture generation (website)
- Raayoni et al., "Generating conjectures on fundamental constants with the Ramanujan Machine", Nature (2021)
- Zudilin, "Apéry-like sequences and their extensions", Experimental Mathematics (2002)
- Ferguson & Bailey, "A Polynomial Time, Numerically Stable Integer Relation Algorithm" (PSLQ)
Contributions are welcome! Here are some ways to help:
- New target constants — add constants to
build_constants()(Clausen values, polylogarithms, MZVs, …) - New search strategies — implement alternative mutation operators or search modes
- Proof automation — connect discovered CFs to irrationality proof pipelines
- Performance — parallelize CF evaluation with multiprocessing
- Documentation — improve examples, add tutorials
# Development setup
git clone https://github.com/ramanujan-breakthrough/ramanujan-breakthrough-generator.git
cd ramanujan-breakthrough-generator
pip install -e ".[dev]"
pytest # run testsPlease open an issue before large PRs. See the Ramanujan Machine project for collaboration opportunities.
Auto-updated: 2026-04-07 10:43 UTC
| Metric | Value |
|---|---|
| Cycles run | 420 |
| Total discoveries | 3551 |
| Unique CFs | 3481 |
| Distinct constants | 1000 |
Constants found: 1 (438), 2 (431), 3 (427), 4 (405), 5 (393), (5/2) (20), (7/2) (20), 4/pi (17), phi (17), (3/2) (17), (1/2) (15), -(1) (15), (5/3) (14), (2/3) (13), (9/2) (13), 1/2*4/pi (11), (4/3) (11), (8/3) (11), 7 (10), 6 (10), (7/3) (10), (11/3) (9), -(2) (9), (1/3) (8), 8 (8), (14/3) (8), 4/3*4/pi (7), S^(3) (7), S^(4) (7), S^(5) (7), (5/4) (7), (10/3) (7), 2/1*phi (6), (15/4) (6), (9/4) (6), -(3) (6), (3/4) (6), (11/4) (6), (2/5) (6), (13/3) (6), e (5), (3/5) (5), (7/4) (5), (1/4) (5), (11/5) (4), (4/5) (4), (8/5) (4), (6/5) (4), (21/5) (4), (23/5) (4), (13/4) (4), (24/5) (4), (27/7) (4), (5/6) (3), (18/5) (3), -(4) (3), -((3/2)) (3), -((2/3)) (3), -((1/2)) (3), (11/2) (3), -((1/3)) (3), (1/5) (3), (17/7) (3), (16/5) (3), (12/5) (3), (29/8) (3), (17/4) (3), (22/5) (3), (13/5) (3), (19/4) (3), (14/5) (3), (34/7) (3), (2/7) (3), 2/1*e (3), -((5/4)) (2), -(5) (2), -((10/3)) (2), -((5/3)) (2), -((4/3)) (2), (1/6) (2), (7/6) (2), (13/6) (2), (16/7) (2), (19/6) (2), (25/6) (2), 10 (2), -(6) (2), 14 (2), 13 (2), (6/7) (2), (10/7) (2), (24/7) (2), (32/9) (2), (31/7) (2), (41/9) (2), (604/301) (2), (7/5) (2), (11/7) (2), (18/7) (2), (21/8) (2), (17/5) (2), (25/7) (2), (32/7) (2), (37/8) (2), (47/10) (2), (12/7) (2), (19/7) (2), (26/7) (2), (34/9) (2), (33/7) (2), (43/9) (2), (9/5) (2), (11/6) (2), (13/7) (2), (17/6) (2), (20/7) (2), (23/8) (2), (19/5) (2), (23/6) (2), (31/8) (2), (35/9) (2), (29/6) (2), (39/8) (2), (44/9) (2), (49/10) (2), -(8) (2), -((1/5)) (2), (29/7) (2), (302/301) (2), (53/13) (2), -((3**(685/452)*5**(69/452))/(2**(209/452)*7**(79/452))) (1), (5**(101/86)*7**(523/86))/(2**(89/86)*3**(373/43)) (1), (5/9) (1), (2**(562/971)*5**(592/971))/(3**(213/971)*7**(126/971)) (1), -((2**(463/108)*3**(389/108)*7**(59/18))/(5**(299/36))) (1), 1/(2**(104/901)*3**(849/901)*5**(828/901)*7**(423/901)) (1), (5**(206/225)*7**(11/10))/(2**(457/900)*3**(119/300)) (1), (2**(507/230)*5**(81/23))/(3**(40/23)*7**(527/230)) (1), (2**(584/31)*7**(736/31))/(3**(383/31)*5**(846/31)) (1), -((3**(92/211)*5**(564/211))/(2**(455/211)*7**(251/211))) (1), (5**(18/431)*7**(542/431))/(2**(318/431)*3**(227/431)) (1), (5**(376/289))/(2**(343/578)*3**(299/578)*7**(339/289)) (1), (3**(60/11)*5**(38/11))/(2**(428/77)*7**(246/77)) (1), 2**(241/444)*3**(281/222)*5**(7/222)*7**(118/111) (1), (3**(569/568)*5**(995/568))/(2**(199/284)*7**(219/142)) (1), (3**(899/733)*5**(937/733))/(2**(364/733)*7**(409/733)) (1), (2**(424/117)*3**(887/117))/(5**(88/117)*7**(461/117)) (1), (239/39) (1), -((841/31)) (1), -((9/59)) (1), (193/9) (1), (33/25) (1), -((403/33)) (1), -((921/887)) (1), -((14/9)) (1), (422/171) (1), -((42/43)) (1), (554/69) (1), -((270/161)) (1), -((58/451)) (1), -((83/23)) (1), (241/147) (1), (43/17) (1), -((161/61)) (1), (121/167) (1), (655/477) (1), (412/107) (1), -((108/37)) (1), (100/17) (1), (337/261) (1), (357/97) (1), (323/47) (1), (61/21) (1), (69/41) (1), (3**(657/406)*7**(416/203))/(2**(549/406)*5**(815/406)) (1), (3**(191/797)*5**(312/797)*7**(90/797))/(2**(24/797)) (1), (2**(97/59)*7**(345/118))/(3**(353/118)*5**4) (1), -((3**(799/727)*5**(347/727))/(2**(496/727)*7**(539/727))) (1), (2**(8/79)*7**(719/79))/(3**(88/79)*5**(744/79)) (1), (3**(162/109)*7**(314/327))/(2**(315/109)*5**(53/327)) (1), (2**(431/227)*5**(100/227)*7**(189/454))/(3**(304/227)) (1), (7**(514/873))/(2**(397/873)*3**(20/291)*5**(107/291)) (1), (95/26) (1), (5**(983/878))/(2**(104/439)*3**(9/439)*7**(225/878)) (1), -((2**(535/483)*3**(34/483)*7**(442/483))/(5**(473/483))) (1), (7**(662/485))/(2**(506/485)*3**(136/97)*5**(9/97)) (1), (2**(551/119)*7**(438/119))/(3**(341/119)*5**(63/17)) (1), (2**(369/47)*3**(585/94)*7**(85/47))/(5**(473/47)) (1), (3**(670/453)*5**(934/453))/(2**(101/151)*7**(253/151)) (1), (3**(901/773)*7**(591/773))/(2**(430/773)) (1), -((2**(107/61)*3**(84/61)*7**(451/244))/(5**(641/244))) (1), (2**(96/97)*5**(61/679))/(3**(494/679)*7**(111/679)) (1), (2**(909/520)*3**(159/260)*7**(93/65))/(5**(35/104)) (1), 35 (1), (85/18) (1), (2**(83/168))/(3**(97/168)*5**(7/120)*7**(37/840)) (1), (2**(794/311)*5**(710/311))/(3**(214/311)*7**(516/311)) (1), -((3**(587/36)*5**(23/4))/(2**(263/36)*7**(119/12))) (1), (3**(94/265)*5**(457/265))/(2**(398/265)*7**(81/265)) (1), (7**(133/130))/(2**(109/195)*3**(107/130)*5**(431/195)) (1), (3**(514/549)*5**(710/549))/(2**(184/183)*7**(367/549)) (1), -((2**(565/548)*5**(929/548)*7**(72/137))/(3**(109/274))) (1), (2**(314/177)*5**(394/177))/(3**(569/354)*7**(109/118)) (1), (2**(742/675)*5**(118/675)*7**(47/135))/(3**(238/675)) (1), (2**(811/87)*3**(163/87)*7**(138/29))/(5**(769/87)) (1), -((2**(73/34)*7**(392/17))/(3**(173/34)*5**(865/34))) (1), -((95/56)) (1), (75/19) (1), -((5/14)) (1), (25/11) (1), (5**(824/715)*7**(21/55))/(2**(160/143)*3**(301/715)) (1), (5**(2/37)*7**(42/37))/(2**(127/518)*3**(527/518)) (1), (3**(457/53)*7**(241/53))/(2**(312/53)*5**(407/53)) (1), (3**(963/278)*5**(41/139))/(2**(237/139)*7**(307/278)) (1), (2**(127/789)*3**(550/789)*7**(716/789))/(5**(776/789)) (1), (3**(161/257)*5**(542/771))/(2**(353/771)*7**(344/771)) (1), -((5**(476/295))/(2**(41/295)*3**(348/295)*7**(183/590))) (1), (2**(273/272)*7**(667/272))/(3**(371/136)*5**(457/136)) (1), (2**(103/45)*3**(313/60)*5**(263/60))/(7**(79/15)) (1), (2**(143/27)*7**(178/81))/(3**(127/54)*5**(227/81)) (1), (2**(41/295)*3**(348/295)*7**(183/590))/(5**(181/295)) (1), -((3**(333/305)*5**(361/610))/(2**(212/305)*7**(379/305))) (1), (2**(74/371)*3**(269/742)*7**(367/742))/(5**(14/53)) (1), (2**(257/79)*5**(152/237)*7**(46/79))/(3**(235/79)) (1), ((5+sqrt(5))/2) (1), (2**(437/39)*3**(161/13))/(5**(841/78)*7**(43/39)) (1), (5**(509/25)*7**(89/25))/(2**(742/25)*3**(416/25)) (1), (2**(61/176)*3**(34/11)*5**(763/176))/(7**(103/22)) (1), (5**(86/849))/(2**(557/849)*3**(469/849)*7**(38/283)) (1), (5**(454/409)*7**(213/409))/(2**(628/409)*3**(177/409)) (1), (5**(32/797))/(2**(358/797)*3**(447/797)*7**(43/797)) (1), (2**(107/406)*7**(921/406))/(3**(951/406)*5**(88/203)) (1), (5**(394/827))/(2**(146/827)*3**(650/827)*7**(37/827)) (1), (2**(427/688)*3**(437/688)*5**(199/688))/(7**(1/8)) (1), (2**(779/519)*5**(229/519))/(3**(266/519)*7**(224/519)) (1), -(2**(235/301)*3**(121/301)*5**(221/903)*7**(94/903)) (1), (3**(504/211)*7**(397/211))/(2**(345/211)*5**(624/211)) (1), (3**(735/121)*7**(18/121))/(2**(458/121)*5**(20/11)) (1), (2**(607/688)*3**(163/688)*5**(165/688))/(7**(13/86)) (1), (3**(956/231)*7**(115/77))/(2**(1/11)*5**(907/231)) (1), (3**(75/29)*7**(606/319))/(2**(326/319)*5**(925/319)) (1), (2**(739/544)*7**(141/136))/(3**(123/136)*5**(379/544)) (1), -((169/7)) (1), (19/15) (1), -((151/37)) (1), -((239/345)) (1), (2/69) (1), -(14) (1), (34/225) (1), -((29/53)) (1), (61/23) (1), -((284/285)) (1), (468/179) (1), (52/5) (1), (444/163) (1), -((625/447)) (1), (673/217) (1), (483/107) (1), (29/9) (1), (975/239) (1), (2**27*3**(493/2)*5**(87/2))/(7**184) (1), (3**(612/269)*5**(295/269))/(2**(612/269)*7**(296/269)) (1), (3**(482/387)*7**(739/387))/(2**(328/387)*5**(311/129)) (1), (5**(774/871)*7**(675/871))/(2**(489/871)*3**(900/871)) (1), (2**(425/247)*7**(659/247))/(3**(488/247)*5**(606/247)) (1), (2**(232/443)*5**(199/886)*7**(195/443))/(3**(549/886)) (1), (2**(48/175)*3**(71/350)*7**(178/175))/(5**(71/100)) (1), (2**(997/742)*3**(47/106)*5**(663/742))/(7**(597/742)) (1), (2**(746/185)*5**(2/185)*7**(21/185))/(3**(8/5)) (1), (2**(823/821)*7**(379/821))/(3**(563/821)*5**(954/821)) (1), (2**(43/18)*3**(337/108)*5**(37/72))/(7**(637/216)) (1), (2**(166/481)*3**2*7**(44/481))/(5**(562/481)) (1), (2**(57/92)*3**(19/276)*5**(95/207))/(7**(103/414)) (1), (2**(464/149))/(3**(277/298)*5**(123/298)*7**(12/149)) (1), -((5**(114/67)*7**(625/268))/(2**(199/67)*3**(997/268))) (1), (2**(45/247)*3**(2/247)*5**(471/494))/(7**(903/494)) (1), (3**(145/719)*5**(599/719))/(2**(395/719)*7**(14/719)) (1), (7**(203/109))/(2**(19/109)*3**(973/327)*5**(484/327)) (1), (2**(808/107)*7**(644/107))/(3**(456/107)*5**(750/107)) (1), (5**(158/357)*7**(174/119))/(2**(140/51)*3**(37/119)) (1), (5**(459/520)*7**(131/260))/(2**(153/520)*3**(75/52)) (1), (2**(29/149)*5**(63/149)*7**(597/745))/(3**(543/745)) (1), (2**(623/835)*5**(4/167))/(3**(97/167)*7**(15/167)) (1), (5**(181/313)*7**(758/939))/(2**(394/939)*3**(466/939)) (1), (2**(21/316)*5**(341/158))/(3**(13/316)*7**(74/79)) (1), (2**(341/856)*3**(127/214)*7**(103/214))/(5**(495/856)) (1), (5**(139/588)*7**(185/147))/(2**(163/196)*3**(269/294)) (1), (2**(239/383)*7**(825/383))/(3**(536/383)*5**(337/383)) (1), (2**(156/97)*3**(703/582))/(5**(355/582)*7**(299/582)) (1), (2**(485/443)*3**(558/443)*7**(421/443))/(5**(900/443)) (1), (437/27) (1), (2**(700/17)*3**(841/17))/(5**(132/17)*7**36) (1), (3**(401/896)*5**(629/896)*7**(125/896))/(2**(55/896)) (1), (3**(127/27)*7**(433/108))/(2**(317/108)*5**(631/108)) (1), (2**(419/121)*7**(762/121))/(3**(391/121)*5**(771/121)) (1), (2**(731/608)*3**(113/608)*7**(505/608))/(5**(335/304)) (1), (2**(704/807)*7**(616/807))/(3**(221/269)*5**(29/807)) (1), (2**(23/13)*7**(516/91))/(3**(105/13)*5**(204/91)) (1), (2**(27/124)*5**(116/93))/(3**(97/248)*7**(99/124)) (1), (2**(6/79)*3**(437/632)*5**(643/632))/(7**(473/632)) (1), (2**(219/278)*5**(875/556))/(3**(161/139)*7**(167/556)) (1), (3**(247/238)*7**(176/119))/(2**(755/476)*5**(331/238)) (1), (5**(237/935)*7**(150/187))/(2**(32/187)*3**(751/935)) (1), -((2**(483/536))/(3**(389/268)*5**(35/67)*7**(31/536))) (1), (7**(978/281))/(2**(734/281)*3**(282/281)*5**(514/281)) (1), -((5**(379/966))/(2**(5/966)*3**(653/966)*7**(16/23))) (1), (5**(8/75)*7**(343/75))/(2**(87/25)*3**(118/25)) (1), (2**(73/246)*7**(303/328))/(3**(245/328)*5**(235/984)) (1), (7**(443/44))/(2**(95/44)*3**(49/8)*5**(13/2)) (1), (3**(287/764)*5**(761/764))/(2**(67/764)*7**(449/764)) (1), (2**(67/357)*3**(134/357)*5**(206/119))/(7**(481/357)) (1), (2**(358/919)*5**(765/919)*7**(219/919))/(3**(344/919)) (1), (3**(398/565)*7**(412/565))/(2**(267/565)*5**(61/113)) (1), 41 (1), (2**(775/181)*7**(136/181))/(3**(25/181)*5**(290/181)) (1), (2**(187/614)*5**(697/614))/(3**(338/307)*7**(91/307)) (1), (2**(317/468)*3**(31/18)*5**(70/39))/(7**(707/468)) (1), 48 (1), -((5**(197/861)*7**(243/287))/(2**(174/287)*3**(431/861))) (1), (2**(185/742)*3**(405/742)*7**(725/742))/(5**(227/371)) (1), -((3**(301/41))/(2**(261/82)*5**(87/82)*7**(21/41))) (1), (709/203) (1), (3**(188/83)*5**(171/332))/(2**(715/332)*7**(163/332)) (1), (5**(202/881)*7**(539/881))/(2**(193/881)*3**(855/881)) (1), (36/11) (1), -((7**(205/86))/(2**(337/344)*3**(201/344)*5**(517/344))) (1), (5**(404/431))/(2**(136/431)*3**(757/431)*7**(91/431)) (1), -((3**(23/6)*7**(89/6))/(2**(337/21)*5**(43/3))) (1), (2**(746/417)*3**(731/417)*5**(383/417))/(7**(808/417)) (1), -((5**(658/5)*7**(22/5))/(2**(339/5)*3**(788/5))) (1), (2**(794/363)*5**(194/363))/(3**(94/363)*7**(475/363)) (1), (5**(187/382)*7**(571/764))/(2**(491/764)*3**(123/382)) (1), (2**(176/541)*3**(470/541)*7**(800/541))/(5**(392/541)) (1), -((5**(247/450)*7**(38/45))/(2**(53/75)*3**(61/90))) (1), (3**(429/269)*5**(967/538))/(2**(221/269)*7**(3/2)) (1), (5**(193/797)*7**(895/797))/(2**(753/797)*3**(465/797)) (1), (4/7) (1), (2**(601/736)*5**(39/368)*7**(81/184))/(3**(7/16)) (1), (2**(413/561)*5**(41/561)*7**(347/561))/(3**(394/561)) (1), -((1/4)) (1), (9/7) (1), (19/8) (1), 9 (1), (23/7) (1), (27/8) (1), (31/9) (1), (30/7) (1), (35/8) (1), (40/9) (1), 44 (1), (2**(9/4)*5**(19/6)*7**(47/8))/(3**(725/48)) (1), (2**(776/481)*3**(540/481)*5**(497/481))/(7**(586/481)) (1), (7**(904/93))/(2**(38/93)*3**(755/93)*5**(110/31)) (1), -((5**(109/25)*7**(36/25))/(2**(114/25)*3**(949/200))) (1), (2**(704/183)*3**(518/183)*5**(452/183))/(7**(859/183)) (1), -((2**(17/25)*7**(892/75))/(3**(644/75)*5**(176/25))) (1), -((3**(201/391)*7**(781/391))/(2**(314/391)*5**(242/391))) (1), -((7**(835/432))/(2**(469/216)*3**(221/432)*5**(77/144))) (1), (5**(371/387)*7**(10/43))/(2**(148/387)*3**(128/387)) (1), -((3**(158/181)*7**(726/181))/(2**(771/181)*5**(625/181))) (1), (2**(71/189)*7**(904/189))/(3**(911/189)*5**(104/63)) (1), (3**(966/229)*5**(185/229))/(2**(526/229)*7**(324/229)) (1), -((5**(14/365)*7**(226/365))/(2**(413/365)*3**(17/146))) (1), (3**(150/19)*5**(595/57))/(2**(207/19)*7**(497/57)) (1), (284/101) (1), (197/51) (1), -((47/19)) (1), -((45/17)) (1), -((16/17)) (1), -((191/487)) (1), -((4/39)) (1), (174/37) (1), (110/13) (1), -((1/16)) (1), (34/59) (1), (54/61) (1), (698/649) (1), (93/11) (1), -((207/13)) (1), (57/17) (1), (12/17) (1), (369/241) (1), (43/23) (1), (954/433) (1), -(89) (1), (91/37) (1), (94/33) (1), (205/67) (1), (563/176) (1), (617/187) (1), (193/59) (1), (83/25) (1), (42/11) (1), (130/31) (1), (2**(61/80)*5**(11/8))/(3**(241/180)*7**(211/360)) (1), (2*3**(163/162))/(5**(109/972)*7**(139/972)) (1), (5**(155/2))/(2**(845/12)*3**(371/6)*7**(11/3)) (1), (7**(962/397))/(2**(483/397)*3**(598/397)*5**(320/397)) (1), -((5**(368/319)*7**(775/638))/(2**(543/638)*3**(983/638))) (1), -((3**(747/925)*5**(614/925))/(2**(302/925)*7**(437/925))) (1), (3**(361/172)*7**(599/344))/(2**(151/172)*5**(527/344)) (1), -((3**(487/43)*7**(61/86))/(2**(458/43)*5**(227/86))) (1), (3**(374/75)*7**(226/75))/(2**(286/75)*5**(112/25)) (1), (2**(295/157)*3**(805/157)*7**(75/157))/(5**(668/157)) (1), (5**(3/22)*7**(835/968))/(2**(437/968)*3**(189/968)) (1), (20/13) (1), -(12) (1), (28/33) (1), (10/9) (1), (36/61) (1), (7/10) (1), -((2**(753/335)*3**(711/335))/(5**(33/335)*7**(287/335))) (1), -((2**(100/697)*3**(35/41))/(5**(348/697)*7**(914/697))) (1), (2**(61/144)*5**(379/864))/(3**(907/864)*7**(245/864)) (1), (5**(29/614)*7**(621/614))/(2**(32/307)*3**(136/307)) (1), (2**(221/198)*3**(127/132)*7**(17/22))/(5**(331/264)) (1), (3**(225/266)*5**(653/266))/(2**(111/133)*7**(249/266)) (1), -((3**(439/495)*5**(749/495))/(2**(469/495)*7**(163/165))) (1), (2**(79/32)*7**(445/128))/(3**(197/128)*5**(813/256)) (1), (3**(11/246)*5**(92/123)*7**(57/328))/(2**(395/984)) (1), (3**(95/96)*7**(215/216))/(2**(77/432)*5**(665/864)) (1), (2**(128/441)*7**(950/441))/(3**(613/441)*5**(572/441)) (1), (188/37) (1), -((4/15)) (1), (416/225) (1), 16 (1), (764/641) (1), (2**(215/234)*3**(4/39)*5**(797/702))/(7**(197/351)) (1), (5**(485/428)*7**(53/428))/(2**(75/107)*3**(37/428)) (1), (5**(596/51)*7**(55/17))/(2**(445/51)*3**(331/17)) (1), (5**(260/911))/(2**(238/911)*3**(435/911)*7**(57/911)) (1), -((5**(765/868)*7**(227/217))/(2**(51/217)*3**(831/868))) (1), -(2**(397/427)*3**(429/427)*5**(75/854)*7**(17/427)) (1), (2**(509/658)*5**(277/329)*7**(505/658))/(3**(855/658)) (1), (3**(977/949)*5**(817/949))/(2**(119/949)*7**(200/949)) (1), (3**(161/832)*5**(541/832)*7**(731/832))/(2**(107/104)) (1), (3**(346/271)*5**(353/542))/(2**(370/271)*7**(563/542)) (1), (2**(941/770)*5**(89/110))/(3**(11/35)*7**(41/770)) (1), (2**(822/347))/(3**(275/347)*5**(20/347)*7**(155/347)) (1), (2**(103/26)*3**(464/13))/(5**(223/13)*7**(95/13)) (1), (5**(115/133)*7**(341/532))/(2**(827/532)*3**(65/532)) (1), (7**(313/17))/(2**(632/51)*3**(767/51)*5**(98/17)) (1), (2**(283/254)*7**(268/127))/(3**(455/254)*5**(464/127)) (1), (2**(220/119)*3**5)/(5**(54/119)*7**(247/119)) (1), (2**(262/15)*7**(19/5))/(3**(10/3)*5**(128/15)) (1), (2**(189/904)*3**(44/113)*7**(23/904))/(5**(571/904)) (1), (2**(61/489)*5**(499/489)*7**(250/489))/(3**(154/489)) (1), (2**(447/739)*5**(590/739))/(3**(20/739)*7**(146/739)) (1), (2**(151/948)*3**(65/948)*7**(184/237))/(5**(197/474)) (1), (5**(289/703)*7**(511/703))/(2**(47/703)*3**(453/703)) (1), -((2**(201/142))/(3**(183/284)*5**(159/284)*7**(31/284))) (1), (847/472) (1), (217/103) (1), (179/62) (1), (23/2) (1), -((19/14)) (1), -((7/44)) (1), (49/256) (1), (103/277) (1), (875/283) (1), (373/98) (1), (107/13) (1), -((5/8)) (1), -((5/2)) (1), (37/47) (1), (203/172) (1), (565/413) (1), (675/142) (1), (105/13) (1), (225/104) (1), (345/146) (1), (511/206) (1), (367/43) (1), -((29/16)) (1), (49/19) (1), (163/52) (1), (641/191) (1), -((47/20)) (1), (55/17) (1), (61/14) (1), (239/55) (1), (2**(571/545)*3**(706/545)*5**(623/545))/(7**(147/545)) (1), (5**(859/796)*7**(225/796))/(2**(285/796)*3**(463/398)) (1), (3**(137/329)*7**(947/987))/(2**(15/329)*5**(33/47)) (1), (5**(206/69))/(2**(96/23)*3**(130/207)*7**(53/207)) (1), (2**126*5**368)/(3**(531/2)*7**(397/2)) (1), (3**(283/263)*7**(297/263))/(2**(234/263)*5**(353/263)) (1), -((2**(106/29)*7**(607/58))/(3**(615/58)*5**(216/29))) (1), -((2**(611/491)*3**(867/491)*7**(163/491))/(5**(388/491))) (1), -((5**(674/147))/(2**(32/147)*3**(193/49)*7**(214/147))) (1), (2**(407/293)*3**(86/293)*5**(643/293))/(7**(556/293)) (1), (3**(203/358)*7**(457/179))/(2**(391/179)*5**(316/179)) (1), (2**(201/215)*7**(803/215))/(3**(142/43)*5**(121/43)) (1), -((3**(85/271)*5**(407/813)*7**(203/271))/(2**(617/813))) (1), (2**(823/473)*7**(634/473))/(3**(166/473)*5**(831/473)) (1), (2**(160/83)*7**(437/83))/(3**(400/83)*5**(314/83)) (1), (7**(704/281))/(2**(118/281)*3**(51/281)*5**(511/281)) (1), (2**(9/59)*3**(296/177)*5**(241/177))/(7**(239/177)) (1), (5**(142/291)*7**(242/291))/(2**(277/291)*3**(34/97)) (1), (2**(127/55)*3**(19/15)*5**(83/33))/(7**(478/165)) (1), -((2**(79/40)*5**(183/20)*7**(21/5))/(3**(779/40))) (1), (2**(17/220)*5**(599/440)*7**(347/220))/(3**(963/440)) (1), (7**(940/151))/(2**(666/151)*3**(700/151)*5**(428/151)) (1), (2**(935/706)*7**(426/353))/(3**(189/706)*5**(901/706)) (1), -((5**103*7**105)/(2**447*3**(113/2))) (1), -((2**(209/478)*3**(391/239)*7**(49/239))/(5**(267/478))) (1), (3**(141/173)*7**(731/173))/(2**(210/173)*5**(749/173)) (1), (3**(79/105)*7**(68/35))/(2**(253/105)*5**(122/105)) (1), (5**(82/11))/(2**(937/99)*3**(317/99)*7**(7/99)) (1), (5**(619/694)*7**(62/347))/(2**(739/694)*3**(343/694)) (1), -((2**(46/127)*3**(987/254))/(5**(671/254)*7**(204/127))) (1), (2**(89/243)*3**(335/486)*5**(895/486))/(7**(749/486)) (1), (5**(120/223)*7**(3/446))/(2**(787/892)*3**(795/892)) (1), (3**(603/530)*5**(487/265))/(2**(316/265)*7**(491/530)) (1), (3**(232/819)*5**(46/39))/(2**(2/3)*7**(106/819)) (1), (5**(191/699)*7**(632/699))/(2**(23/699)*3**(913/699)) (1), (7**(229/683))/(2**(323/683)*3**(27/683)*5**(412/683)) (1), (3**(140/149)*5**(515/447))/(2**(347/447)*7**(61/149)) (1), (2**(927/20)*3**(37/5)*7**(1/2))/(5**(51/2)) (1), (3**(422/437)*7**(336/437))/(2**(541/874)*5**(269/874)) (1), (2**(515/484)*5**(383/484)*7**(61/242))/(3**(67/44)) (1), (2**(423/146)*3**(349/292)*5**(585/292))/(7**(479/146)) (1), (2**(821/386)*3**(417/386)*5**(34/193))/(7**(275/193)) (1), (5**(739/298))/(2**(391/298)*3**(151/149)*7**(331/298)) (1), (3**(905/174)*5**(235/58))/(2**(373/87)*7**(259/58)) (1), (3**(385/122)*7**(583/244))/(2**(831/244)*5**(871/244)) (1), -((7**(131/335))/(2**(117/335)*3**(29/670)*5**(381/335))) (1), (3**(887/748)*7**(277/748))/(2**(65/748)*5**(112/187)) (1), -((2**(253/120))/(3**(217/240)*5**(37/120)*7**(3/16))) (1), (3**(537/602)*7**(911/602))/(2**(507/602)*5**(375/602)) (1), (2**(947/971)*5**(320/971)*7**(135/971))/(3**(241/971)) (1), -((2**(806/251)*7**(761/251))/(3**(423/251)*5**(50/251))) (1), (2**(291/463)*3**(481/463)*5**(9/926))/(7**(357/463)) (1), (183/13) (1), (282/41) (1), (3**(29/100)*7**(321/100))/(2**(301/100)*5**(57/25)) (1), (3**(128/73)*7**(173/73))/(2**(697/365)*5**(802/365)) (1), (2**(102/349)*5**(39/349)*7**(449/349))/(3**(514/349)) (1), -((2**(173/319)*3**(607/319)*5**(822/319))/(7**(938/319))) (1), (2**(171/245)*7**(146/49))/(3**(577/245)*5**(342/245)) (1), (85/31) (1), -(17) (1), -((19/23)) (1), -((7/20)) (1), -((5/61)) (1), (86/19) (1), (50/7) (1), -(22) (1), -((2/5)) (1), -((10/7)) (1), (2/19) (1), (22/35) (1), (10/11) (1), (86/79) (1), (23/3) (1), -((3/5)) (1), (93/49) (1), (25/12) (1), (73/33) (1), 40 (1), -((4/5)) (1), (20/11) (1), (64/25) (1), (124/43) (1), (40/13) (1), (292/91) (1), (400/121) (1), (143/37) (1), (118/29) (1), (349/83) (1), (241/56) (1), (127/29) (1), (2**(932/193)*3**(401/193)*5**(592/193))/(7**(972/193)) (1), (2**(217/809)*3**(858/809)*7**(744/809))/(5**(823/809)) (1), (3**(386/255)*7**(626/255))/(2**(157/85)*5**(206/85)) (1), (3**(43/667)*5**(745/667)*7**(8/29))/(2**(864/667)) (1), (3**(489/349)*5**(224/349))/(2**(539/698)*7**(615/698)) (1), (5**(915/772)*7**(993/772))/(2**(219/772)*3**(667/772)) (1), (5**(415/182))/(2**(893/364)*3**(127/364)*7**(149/182)) (1), (2**(400/839)*3**(747/839)*5**(716/839))/(7**(593/839)) (1), (5**(11/35)*7**(4/35))/(2**(66/245)*3**(3/7)) (1), (2**(810/149)*3**(748/149))/(5**(240/149)*7**(511/149)) (1), (3**(499/187)*7**(557/374))/(2**(219/374)*5**(390/187)) (1), (2**(936/739)*5**(391/739)*7**(163/739))/(3**(77/739)) (1), (2**(449/469)*5**(541/469)*7**(237/469))/(3**(950/469)) (1), (3**(731/573)*5**(274/573)*7**(109/573))/(2**(239/573)) (1), (2**(439/578)*3**(175/289)*5**(247/289))/(7**(403/578)) (1), (2**(149/27)*3**(61/162)*5**(101/18))/(7**(937/162)) (1), (3**(176/71)*7**(599/71))/(2**(377/71)*5**(626/71)) (1), (2**(729/56)*3**(795/56))/(5**(681/56)*7**(41/28)) (1), (3**(31/142)*7**(667/284))/(2**(191/71)*5**(193/142)) (1), (2**(142/297)*3**(466/891)*5**(245/297))/(7**(229/297)) (1), 2**(100/811)*3**(394/811)*5**(327/811)*7**(967/811) (1), -((3**(331/628)*5**(741/628)*7**(19/628))/(2**(807/628))) (1), -((7**935)/(2**870*3**410*5**475)) (1), (3**(416/261)*5**(161/261))/(2**(169/261)*7**(10/261)) (1), (2**(381/257)*7**(819/257))/(3**(563/257)*5**(716/257)) (1), (2**(665/831)*5**(614/831)*7**(236/831))/(3**(422/831)) (1), -((2**(957/889)*5**(100/889)*7**(874/889))/(3**(696/889))) (1), (2**(526/53)*5**(10/53)*7**(294/53))/(3**(808/53)) (1), (2**(485/703)*3**(546/703)*7**(434/703))/(5**(767/703)) (1), (3/8) (1), -((2**(540/119)*7**(113/17))/(3**(898/119)*5**(415/119))) (1), (2**(478/193)*5**(291/193))/(3**(335/193)*7**(92/193)) (1), (2**(504/883)*3**(948/883)*5**(209/883))/(7**(179/883)) (1), (2**(299/140)*7**(587/140))/(3**(3/10)*5**(739/140)) (1), -((2**(162/739)*5**(39/739)*7**(94/739))/(3**(654/739))) (1), (2**(695/186)*3**(89/93)*5**(201/62))/(7**(493/186)) (1), (2**(900/523)*5**(574/523)*7**(8/523))/(3**(880/523)) (1), (2**(646/977)*3**(925/977)*5**(603/977))/(7**(82/977)) (1), (23/11) (1), (23/9) (1), -((3/25)) (1), (1/7) (1), (19/63) (1), (74/21) (1), 18 (1), (2/9) (1), (42/37) (1), (74/57) (1), (38/27) (1), (61/11) (1), (31/17) (1), (17/8) (1), (39/17) (1), (89/37) (1), (251/101) (1), 12 (1), (36/13) (1), (28/9) (1), (148/45) (1), (228/67) (1), (108/31) (1), (436/123) (1), (45/11) (1), (167/39) (1), (381/85) (1), (259/57) (1), (225/49) (1), (2**(623/541)*5**(307/541)*7**(287/541))/(3**(540/541)) (1), (2**(395/524)*5**(453/262))/(3**(385/262)*7**(83/524)) (1), (2**(853/434)*3**(641/434)*5**(43/62))/(7**(75/62)) (1), (5**(359/460)*7**(381/920))/(2**(291/920)*3**(127/460)) (1), (2**(13/133)*5**(425/931)*7**(158/931))/(3**(250/931)) (1), (2**(782/695)*3**(10/139)*7**(502/695))/(5**(206/695)) (1), (33/14) (1), (57/47) (1), (87/104) (1), (123/191) (1), (165/314) (1), (2**(593/259)*3**(2/7))/(5**(116/259)*7**(81/259)) (1), (2**(641/325)*3**(752/325))/(5**(163/325)*7**(71/65)) (1), (5**(881/478))/(2**(153/239)*3**(417/478)*7**(143/239)) (1), (3**(363/499)*7**(749/499))/(2**(255/499)*5**(454/499)) (1), (7**(897/191))/(2**(714/191)*3**(86/191)*5**(506/191)) (1), (2**(282/211)*3**(792/211))/(5**(58/211)*7**(362/211)) (1), (2**(409/828)*3**(761/828)*7**(58/69))/(5**(45/92)) (1), (3**(429/827)*5**(438/827))/(2**(182/827)*7**(209/827)) (1), (3**(644/849)*5**(91/849))/(2**(791/849)*7**(665/849)) (1), (3**(359/59)*7**(857/59))/(2**(549/59)*5**(992/59)) (1), (5**(335/789)*7**(409/789))/(2**(652/789)*3**(117/263)) (1), ((5+sqrt(13))/2) (1), (2**(327/796)*7**(279/796))/(3**(141/398)*5**(707/796)) (1), (2**(263/535)*3**(944/535)*7**(598/535))/(5**(507/535)) (1), (5**(635/543)*7**(254/543))/(2**(580/543)*3**(374/543)) (1), (2**(152/337)*3**(779/337)*7**(160/337))/(5**(605/337)) (1), 2**(10/17)*3**(243/782)*5**(18/23)*7**(751/782) (1), (2**(251/68)*3**(957/136)*5**(209/136))/(7**(883/136)) (1), (5**(411/10)*7**(331/10))/(2**(318/5)*3**(741/10)) (1), (53/35) (1), (17/10) (1), (19/9) (1), (13/27) (1), (13/22) (1), (43/65) (1), (62/23) (1), (34/11) (1), (14/11) (1), (34/23) (1), (62/39) (1), (98/59) (1), (142/83) (1), (47/19) (1), (44/17) (1), (141/53) (1), (103/38) (1), (283/103) (1), (32/5) (1), (52/15) (1), (104/29) (1), (172/47) (1), (256/69) (1), (356/95) (1), (472/125) (1), (55/12) (1), (191/41) (1), (146/31) (1), (413/87) (1), (277/58) (1), (715/149) (1), (3**(770/113)*5**(272/113))/(2**(86/113)*7**(534/113)) (1), (5**(67/55)*7**(483/440))/(2**(233/220)*3**(397/220)) (1), (5**(34/75)*7**(403/900))/(2**(11/450)*3**(841/900)) (1), (5**(743/683))/(2**(192/683)*3**(386/683)*7**(922/683)) (1), (7**(723/371))/(2**(19/53)*3**(500/371)*5**(24/371)) (1), (2**(277/287)*3**(255/287)*7**(544/861))/(5**(271/287)) (1), (2**(341/25)*3**(249/25)*5**(288/25))/(7**(484/25)) (1), (3**(529/389)*5**(593/389))/(2**(969/389)*7**(202/389)) (1), (2**(784/59)*3**(979/59))/(5**(255/59)*7**(570/59)) (1), (2**(125/322)*3**(635/322)*5**(961/322))/(7**(16/7)) (1), -((2**(103/191)*3**(15/382)*5**(651/764))/(7**(72/191))) (1), (3**(143/470)*5**(284/235))/(2**(813/470)*7**(31/235)) (1), 2**(1/48)*3**(979/864)*5**(5/32)*7**(175/288) (1), (2**(33/23)*7**(313/184))/(3**(95/138)*5**(691/552)) (1), (7**(475/191))/(2**(813/382)*3**(217/191)*5**(751/382)) (1), 47 (1), (2**(186/469)*5**(307/469)*7**(122/469))/(3**(411/469)) (1), (2**(811/956)*7**(93/239))/(3**(233/956)*5**(583/956)) (1), (7**(175/176))/(2**(139/220)*3**(103/440)*5**(893/880)) (1), (2**(73/54)*5**(529/594))/(3**(140/297)*7**(217/594)) (1), (5**(431/201)*7**(35/201))/(2**(103/402)*3**(929/402)) (1), (2**(171/37)*7**(583/74))/(3**(447/37)*5**(107/37)) (1), (5**(74/275)*7**(702/275))/(2**(634/275)*3**(53/25)) (1), (3**(851/787)*7**(840/787))/(2**(504/787)*5**(555/787)) (1), (2**(509/621)*3**(101/69)*5**(101/207))/(7**(937/621)) (1), (2**(835/451)*3**(81/451)*7**(687/451))/(5**(888/451)) (1), (2**(238/635)*5**(631/635))/(3**(276/635)*7**(364/635)) (1), (3**(893/761)*7**(456/761))/(2**(304/761)*5**(743/761)) (1), (2**(283/716)*3**(687/716)*7**(285/358))/(5**(469/716)) (1), (3**(987/305)*5**(4/305))/(2**(54/305)*7**(421/305)) (1), (5**(9/52)*7**(739/364))/(2**(3/2)*3**(953/364)) (1), (3**(624/893)*7**(946/893))/(2**(148/893)*5**(713/893)) (1), (3**(33/37)*7**(473/740))/(2**(77/370)*5**(199/740)) (1), (2**(39/43)*3**(866/645))/(5**(154/645)*7**(173/215)) (1), (2**(491/680)*5**(111/85))/(3**(197/170)*7**(117/680)) (1), (302/101) (1), (2**(338/451)*3**(149/451)*5**(72/451))/(7**(87/902)) (1), (5**(551/749))/(2**(338/749)*3**(45/749)*7**(173/749)) (1), (2**(523/564)*5**(889/564))/(3**(551/564)*7**(587/564)) (1), (2**166)/(3**(412/5)*5**(37/5)*7**(29/5)) (1), (2**(11/46)*3**(93/46)*5**(85/23))/(7**(259/92)) (1), (2**(488/477)*5**(5/6))/(3**(223/954)*7**(341/477)) (1), (2**(394/815)*5**(567/815)*7**(190/163))/(3**(253/815)) (1), (2**(518/325)*7**(459/325))/(3**(76/325)*5**(512/325)) (1), (5**(943/465))/(2**(103/465)*3**(17/465)*7**(493/465)) (1), (5**(556/891)*7**(920/891))/(2**(889/891)*3**(472/891)) (1), (2**(45/47)*3**(313/47))/(5**(147/94)*7**(91/47)) (1), (5**(145/423)*7**(83/141))/(2**(202/423)*3**(8/47)) (1), (2**(500/703)*5**(667/703)*7**(87/703))/(3**(583/703)) (1), (3**(946/911)*5**(777/911))/(2**(654/911)*7**(861/911)) (1), (2**(119/922)*3**(925/922)*7**(241/461))/(5**(67/922)) (1), (2**(386/431)*5**(635/862))/(3**(161/862)*7**(659/862)) (1), (2**(411/445)*3**(803/890)*5**(571/890))/(7**(551/890)) (1), (3**(789/832))/(2**(21/26)*5**(185/416)*7**(207/416)) (1), -((2**(44/53)*5**(646/371))/(3**(162/371)*7**(431/371))) (1), (122/33) (1), (329/38) (1), (25/4) (1), -((3**(725/268)*5**(965/268))/(2**(663/268)*7**(411/134))) (1), -((3**(51/91)*5**(185/728)*7**(13/28))/(2**(94/91))) (1), -((2**(15/2)*3**(59/40)*7**(543/40))/(5**(407/20))) (1), (2**(495/344)*3**(66/43))/(5**(275/344)*7**(99/344)) (1), (2**(334/695)*3**(567/695)*5**(946/695))/(7**(706/695)) (1), (3**(263/190))/(2**(47/76)*5**(37/76)*7**(181/380)) (1), (2**(129/136)*7**(169/340))/(3**(9/40)*5**(1/136)) (1), (2**(398/267)*3**(200/267)*5**(307/267))/(7**(81/89)) (1), (2**(591/451)*3**(556/451)*5**(816/451))/(7**(522/451)) (1), (5**(159/17)*7**(59/17))/(2**(483/68)*3**(989/68)) (1), (3**(497/365)*5**(851/730))/(2**(37/730)*7**(402/365)) (1), -((7**(433/34))/(2**(469/68)*3**(297/68)*5**(615/68))) (1), (2**(1/27)*3**(139/27))/(5**(23/54)*7**(14/9)) (1), (2**(402/41)*5**(330/41))/(3**(863/82)*7**(271/82)) (1), (2**(493/162)*7**(413/81))/(3**(475/162)*5**(383/81)) (1), 11 (1), (7**(849/166))/(2**(112/83)*3**(911/166)*5**(207/166)) (1), (3**(241/322)*5**(711/644))/(2**(229/322)*7**(9/14)) (1), (345/79) (1), (2**(86/553)*7**(684/553))/(3**(712/553)*5**(247/553)) (1), (2**(957/965)*5**(444/965))/(3**(599/965)*7**(474/965)) (1), (5**(205/327)*7**(3/109))/(2**(355/981)*3**(77/109)) (1), -((2**(786/623)*3**(719/623))/(5**(382/623)*7**(355/623))) (1), (2**(325/63)*5**(215/126))/(3**(23/7)*7**(31/42)) (1), (3**(229/218)*5**(951/436))/(2**(381/218)*7**(110/109)) (1), (5**(214/709)*7**(764/709))/(2**(737/709)*3**(328/709)) (1), (2**(37/97)*3**(77/873)*5**(529/873))/(7**(115/291)) (1), (3**(132/101)*7**(212/101))/(2**(403/303)*5**(571/303)) (1), (2**(317/155)*7**(784/465))/(3**(533/465)*5**(104/93)) (1), (3**(849/629)*5**(265/629))/(2**(516/629)*7**(582/629)) (1), -((2**(1/114)*7**(313/76))/(3**(553/228)*5**(178/57))) (1), (2**(75/28)*3**(229/112)*5**(83/336))/(7**(131/84)) (1), (2**(386/281)*5**(747/281))/(3**(787/281)*7**(205/281)) (1), (2**(43/15)*3**(169/15)*5**(181/15))/(7**(257/15)) (1), (3**(158/773)*5**(103/773)*7**(642/773))/(2**(726/773)) (1), (2**(778/409)*5**(499/409))/(3**(670/409)*7**(114/409)) (1), (5**(434/5))/(2**(473/5)*3**(233/5)*7**(53/5)) (1), -((2**(699/638)*5**(9/319)*7**(201/319))/(3**(178/319))) (1), (5**(487/195))/(2**(149/130)*3**(253/130)*7**(41/390)) (1), (2**(880/317)*3**(286/317)*5**(37/317))/(7**(290/317)) (1), (3**(255/346)*7**(295/346))/(2**(22/173)*5**(232/173)) (1), (2**(92/95)*3**(661/475)*7**(379/475))/(5**(174/95)) (1), -((2**(449/896)*5**(459/448))/(3**(293/448)*7**(67/224))) (1), (2**(343/640)*7**(649/640))/(3**(883/640)*5**(277/640)) (1), (2**(122/45)*7**(182/135))/(3**(191/270)*5**(227/270)) (1), (3**(337/498)*7**(917/498))/(2**(140/249)*5**(785/498)) (1), (7**(717/910))/(2**(19/455)*3**(146/455)*5**(344/455)) (1), (8/11) (1), (10/19) (1), (12/29) (1), (2**(501/100)*7**(623/100))/(3**(23/10)*5**(727/100)) (1), (14/41) (1), (2**(85/73)*3**(31/73))/(5**(104/803)*7**(524/803)) (1), (5**(426/239))/(2**(615/478)*3**(445/478)*7**(49/478)) (1), (2**(803/843)*5**(713/843)*7**(14/281))/(3**(751/843)) (1), (5**(398/333)*7**(169/333))/(2**(127/222)*3**(749/666)) (1), (2**(59/40)*3**(97/52)*7**(603/520))/(5**(139/104)) (1), (2**(445/502)*5**(337/251))/(3**(485/251)*7**(112/251)) (1), (2**(833/948)*3**(841/948))/(5**(95/474)*7**(497/948)) (1), (2**(329/207))/(3**(193/621)*5**(710/621)*7**(91/621)) (1), ((4+sqrt(8))/2) (1), ((5+sqrt(17))/2) (1), (2**(334/339)*3**(809/339))/(5**(136/339)*7**(64/113)) (1), (7**(297/29))/(2**(973/58)*3**(152/29)*5**(35/58)) (1), (2**(171/223)*7**(197/669))/(3**(451/669)*5**(17/223)) (1), (7**(686/141))/(2**(766/141)*3**(52/47)*5**(316/141)) (1), (2**(325/948)*3**(74/79)*5**(241/316))/(7**(637/948)) (1), (5**(1/51)*7**(214/153))/(2**(730/459)*3**(83/459)) (1), (2**(165/596)*3**(145/596)*7**(707/596))/(5**(567/596)) (1), (5**(127/116)*7**(391/580))/(2**(343/290)*3**(297/580)) (1), -((2**(291/154)*3**(237/308)*5**(191/154))/(7**(137/308))) (1), (3**(869/736)*5**(867/736))/(2**(27/23)*7**(249/368)) (1), (2**(949/149)*3**(407/149))/(5**(205/149)*7**(147/149)) (1), -((2**(48/17)*3**(244/187)*5**(409/187))/(7**(644/187))) (1), (2**(626/355)*5**(976/355)*7**(33/71))/(3**(238/355)) (1), (2**(914/773)*3**(826/773)*5**(444/773))/(7**(639/773)) (1), (2**(998/347)*3**(385/347)*5**(13/347))/(7**(662/347)) (1), (2**(524/479)*3**(697/479)*7**(16/479))/(5**(587/479)) (1), (2**(11/25)*3**(178/175)*5**(992/175))/(7**(173/35)) (1), (2**(61/142)*5**(169/284)*7**(191/284))/(3**(471/568)) (1), (2**(226/103)*3**(120/103))/(5**(71/103)*7**(1/103)) (1), (3**(325/408)*7**(689/408))/(2**(163/408)*5**(83/408)) (1), (7**(401/315))/(2**(11/35)*3**(101/105)*5**(11/105)) (1), (3**(307/439)*5**(655/439))/(2**(328/439)*7**(247/439)) (1), -((3**(942/515)*5**(8/5))/(2**(611/515)*7**(581/515))) (1), (2**(620/549)*3**(73/549)*7**(275/183))/(5**(350/549)) (1), (2**(359/221)*3**(644/221)*7**(428/221))/(5**(636/221)) (1), (2**(625/61))/(3**(66/61)*5**(49/61)*7**(71/61)) (1), (3**(289/193)*5**(132/193))/(2**(523/193)*7**(10/193)) (1), (5**(542/105))/(2**(169/21)*3**(1/5)*7**(24/35)) (1), (2**(574/919)*3**(748/919)*7**(544/919))/(5**(712/919)) (1), (3**(265/824)*5**(69/206)*7**(483/824))/(2**(217/412)) (1), (3**(212/443)*5**(237/443)*7**(252/443))/(2**(752/443)) (1), (3**(535/886)*7**(478/443))/(2**(350/443)*5**(485/443)) (1), (2**(705/848)*5**(401/848)*7**(545/848))/(3**(697/848)) (1), (5**(837/368))/(2**(119/368)*3**(25/92)*7**(273/368)) (1), (3**(259/79)*5**(100/79))/(2**(489/79)*7**(17/79)) (1), (3**(26/393)*7**(781/393))/(2**(192/131)*5**(403/393)) (1), (3**(569/21)*7**28)/(2**(77/3)*5**(830/21)) (1), (3**(282/533)*5**(61/533)*7**(506/533))/(2**(542/533)) (1), (2**(805/697)*3**(881/697)*5**(154/697))/(7**(437/697)) (1), (2**(445/457)*3**(991/914)*5**(205/457))/(7**(64/457)) (1), (2**(45/188)*3**(7/235)*7**(91/470))/(5**(5/47)) (1), (2**(712/159)*5**(875/159))/(3**(46/159)*7**(276/53)) (1), -((2**(7/19)*3**(303/323)*5**(72/323))/(7**(594/323))) (1), (2**(14/13)*5**(37/91)*7**(2/13))/(3**(82/91)) (1), (2**(298/919)*5**(624/919)*7**(295/919))/(3**(201/919)) (1), (2**(40/11)*3**(669/11)*7**(114/11))/(5**(606/11)) (1), (3**(119/23)*5**(413/92))/(2**(845/184)*7**(379/92)) (1), (2**(1/3)*3**(115/72)*7**(67/96))/(5**(713/576)) (1), (2**(191/890)*3**(15/89)*5**(137/178))/(7**(193/445)) (1), (2**(297/8)*5**(173/6))/(3**(317/24)*7**(115/4)) (1), (7**(415/632))/(2**(19/79)*3**(179/632)*5**(111/632)) (1), (7**(388/819))/(2**(59/819)*3**(397/819)*5**(48/91)) (1), -((3**(643/268))/(2**(493/268)*5**(12/67)*7**(327/134))) (1), (3**(894/5))/(2**28*5**(398/5)*7**(123/5)) (1), (3**(75/268)*5**(743/268))/(2**(3/134)*7**(129/67)) (1), (3**(587/706)*7**(408/353))/(2**(49/353)*5**(427/353)) (1), (2**(39/680)*3**(147/340)*5**(253/340))/(7**(41/680)) (1), (5**(7/19))/(2**(61/893)*3**(124/893)*7**(184/893)) (1), (2**(92/87)*5**(491/696)*7**(47/232))/(3**(323/696)) (1), (2**(43/59)*3**(111/413)*7**(467/826))/(5**(515/826)) (1), (3**(837/656)*5**(561/656))/(2**(239/656)*7**(559/656)) (1), (2**(155/182)*3**(477/182)*7**(118/91))/(5**(589/182)) (1), (2**(599/176)*3**(43/8)*5**(405/176))/(7**(45/8)) (1), -((2**(5/24)*3**(295/24)*5**(733/24))/(7**(251/8))) (1), (2**(103/630)*5**(341/630)*7**(73/63))/(3**(53/35)) (1), (15/7) (1), (22/7) (1), (25/8) (1), (33/8) (1), (37/9) (1), (16/3) (1), (21/4) (1), (26/5) (1), (31/6) (1), (36/7) (1), (41/8) (1), (46/9) (1), (51/10) (1), (2**(985/876)*3**(631/876)*5**(13/438))/(7**(569/876)) (1), (3**(172/573)*5**(295/191))/(2**(373/573)*7**(424/573)) (1), (5**(86/87))/(2**(54/29)*3**(40/87)*7**(8/435)) (1), (2**(123/76)*5**(37/76)*7**(181/380))/(3**(263/190)) (1), (2**(71/68)*3**(139/680)*5**(479/340))/(7**(589/680)) (1), (7**(887/578))/(2**(239/578)*3**(118/289)*5**(132/289)) (1), (5**(141/749)*7**(983/749))/(2**(508/749)*3**(86/107)) (1), (2**(49/164)*3**(355/656)*7**(163/656))/(5**(687/656)) (1), (2**(469/913)*7**(894/913))/(3**(749/913)*5**(114/913)) (1), (2**(234/791)*3**(361/791)*7**(63/113))/(5**(391/791)) (1), (2**(391/654)*5**(101/654)*7**(88/327))/(3**(953/654)) (1), (3**(943/589)*7**(468/589))/(2**(430/589)*5**(764/589)) (1), (2**(211/375)*7**(878/375))/(3**(88/125)*5**(418/375)) (1), 29 (1), -((5**(454/53)*7**(343/53))/(2**(880/53)*3**(610/53))) (1), (5**(82/91)*7**(7/13))/(2**(757/728)*3**(529/728)) (1), -((2**(286/459))/(3**(52/459)*5**(13/34)*7**(371/918))) (1), (2**(921/350)*3**(37/35))/(5**(18/175)*7**(491/350)) (1), -((3**(23/113)*7**(433/226))/(2**(723/226)*5**(7/113))) (1), (3**(203/321)*7**(245/214))/(2**(587/642)*5**(607/642)) (1), (2**(389/394)*3**(21/394)*7**(18/197))/(5**(45/394)) (1), (3**(962/19)*5**(256/19))/(2**(520/19)*7**(557/19)) (1), 2**(46/249)*3**(44/83)*5**(575/996)*7**(101/498) (1), (3**(433/539)*5**(11/49))/(2**(292/539)*7**(3/11)) (1), (3**(561/652)*7**(291/326))/(2**(353/326)*5**(47/652)) (1), (2**(835/708)*5**(181/177))/(3**(197/177)*7**(11/118)) (1), (87/13) (1), (2**(157/445)*3**(357/445))/(5**(85/178)*7**(321/890)) (1), (2**(31/443)*3**(154/443)*5**(874/443))/(7**(502/443)) (1), (2**(44/465)*3**(77/93)*7**(4/15))/(5**(107/930)) (1), (7**(449/316))/(2**(403/316)*3**(43/158)*5**(41/316)) (1), -((5**(223/632)*7**(899/632))/(2**(45/158)*3**(829/632))) (1), (3**(48/277)*5**(375/277))/(2**(456/277)*7**(310/277)) (1), (3**(595/681)*7**(713/681))/(2**(517/681)*5**(394/681)) (1), (2**(175/212)*3**(533/636)*5**(593/636))/(7**(287/212)) (1), (2**(911/270)*3**(476/135)*5**(121/270))/(7**(857/270)) (1), (2**(856/767)*5**(753/767))/(3**(166/767)*7**(498/767)) (1), (2**(364/877)*5**(577/877)*7**(318/877))/(3**(158/877)) (1), (2**(817/237)*5**(659/237))/(3**(760/237)*7**(221/237)) (1), -((3**(177/161)*7**(544/483))/(2**(124/483)*5**(163/161))) (1), (3**(48/367)*5**(21/367))/(2**(303/367)*7**(89/734)) (1), (2**(217/655)*3**(65/131)*5**(972/655))/(7**(622/655)) (1), (2**(145/54)*5**(460/27))/(3**(37/9)*7**(655/54)) (1), (3**(149/57)*7**(73/38))/(2**(97/76)*5**(307/114)) (1), (83/17) (1), (146/37) (1), (523/135) (1), (952/229) (1), -((3**(971/201)*5**(4/201))/(2**(256/67)*7**(216/67))) (1), (2**(680/467)*5**(142/467)*7**(373/467))/(3**(779/467)) (1), (2**(209/288)*3**(119/288))/(5**(139/288)*7**(247/288)) (1), (2**(41/140)*3**(53/20)*7**(237/140))/(5**(237/70)) (1), (3**(56/963)*7**(970/963))/(2**(394/963)*5**(235/321)) (1), (3**(579/536)*7**(393/536))/(2**(921/536)*5**(19/268)) (1), (7**(173/16))/(2**4*3**(391/32)*5**(85/32)) (1), (3**(220/269)*7**(958/807))/(2**(304/269)*5**(398/807)) (1), (2**(223/956)*3**(87/956)*5**(549/956))/(7**(421/956)) (1), (2**(262/97)*3**(843/97)*5**(14/97))/(7**(383/97)) (1), (7**(309/224))/(2**(163/336)*3**(3/112)*5**(115/168)) (1), -((2**(146/531)*7**(821/531))/(3**(664/531)*5**(520/531))) (1), (3**(13/10)*7**(37/250))/(2**(203/125)*5**(3/125)) (1), -((2**(218/25)*3**(27/25)*7**(181/50))/(5**(423/50))) (1), -((2**(151/60)*5**(257/120))/(3**(46/45)*7**(21/10))) (1), (3**(588/185)*5**(767/185))/(2**(568/185)*7**(119/37)) (1), (2**(318/41)*5**(375/41))/(3**(403/82)*7**(327/41)) (1), (5**(632/937)*7**(419/937))/(2**(202/937)*3**(207/937)) (1), (2**(311/78)*3**(569/156)*5**(41/26))/(7**(619/156)) (1), (5**(501/170)*7**(203/85))/(2**(497/85)*3**(661/170)) (1), (5**(773/204)*7**(287/204))/(2**(226/51)*3**(455/102)) (1), (3**(43/63)*7**(341/252))/(2**(107/63)*5**(47/42)) (1), (2**(304/99)*5**(392/99))/(3**(53/11)*7**(12/11)) (1), (3**(42/607)*5**(891/607))/(2**(662/607)*7**(133/607)) (1), (5**(33/65)*7**(291/65))/(2**(737/65)*3**(44/65)) (1), (2**(222/599)*3**(896/599)*7**(346/599))/(5**(688/599)) (1), (2**(329/381)*5**(538/381)*7**(42/127))/(3**(698/381)) (1), (3**758)/(2**619*5**118*7**109) (1), (2**(655/399)*5**(949/399))/(3**(134/57)*7**(26/21)) (1), (2**(817/367)*5**(429/367))/(3**(316/367)*7**(187/367)) (1), (5**(77/167)*7**(116/167))/(2**(467/334)*3**(187/668)) (1), (2**(186/923)*5**(8/71)*7**(713/923))/(3**(469/923)) (1), -((3**(429/427)*5**(75/854)*7**(17/427))/(2**(30/427))) (1), (7**(791/594))/(2**(179/297)*3**(46/297)*5**(23/54)) (1), ((3+sqrt(5))/2) (1), (7**(730/439))/(2**(956/439)*3**(615/439)*5**(534/439)) (1), ((4+sqrt(12))/2) (1), (7**(448/87))/(2**(2/87)*3**(121/87)*5**(385/87)) (1), ((5+sqrt(21))/2) (1), (2**(258/167)*5**(532/167))/(3**(98/167)*7**(379/167)) (1), (5**(60/17))/(2**(109/136)*3**(521/272)*7**(359/272)) (1), (5**(607/584))/(2**(449/292)*3**(207/292)*7**(541/584)) (1), ((1+sqrt(5))/2) (1), ((2+sqrt(8))/2) (1), (2**(99/149)*5**(640/447))/(3**(7/447)*7**(338/447)) (1), (3**(549/298)*7**(871/298))/(2**(292/149)*5**(474/149)) (1), (2**(210/719)*3**(78/719)*5**(938/719))/(7**(328/719)) (1), (3**(249/199)*7**(688/199))/(2**(993/199)*5**(325/199)) (1), (2**(77/41)*5**(122/123))/(3**(322/123)*7**(403/246)) (1), -((3**(974/103)*5**(981/103))/(2**(941/103)*7**(967/103))) (1), (5**(979/998)*7**(227/499))/(2**(503/998)*3**(272/499)) (1), (2**(665/206)*5**(845/206))/(3**(819/206)*7**(243/103)) (1), (3**(369/683)*5**(655/683))/(2**(674/683)*7**(263/683)) (1), S^(2) (1)
| # | Constant | a(n) | b(n) | Digits | Complexity |
|---|---|---|---|---|---|
| 1 | e |
[0, -1] |
[3, 1] |
321.2 | 2.4 |
| 2 | phi |
[-1, 0, 4] |
[1, 2] |
321.1 | 3.5 |
| 3 | 2/1*phi |
[4, 0] |
[2, 0] |
320.8 | 2.2 |
| 4 | 1/2*4/pi |
[0, 1, -2] |
[1, 3] |
222.4 | 3.4 |
| 5 | 4/pi |
[0, 3, -2] |
[1, 3] |
222.1 | 3.6 |
| 6 | 4/3*4/pi |
[0, 5, -2] |
[1, 3] |
222.0 | 3.8 |
| 7 | phi |
[1, 0, 0] |
[1, 0] |
221.1 | 2.3 |
| 8 | S^(3) |
[0, 7, -2] |
[1, 3] |
221.0 | 4.0 |
| 9 | 2/1*phi |
[2, 3, 1] |
[2, 1] |
220.8 | 3.9 |
| 10 | S^(5) |
[0, 11, -2] |
[1, 3] |
220.7 | 4.4 |
MIT — free for academic and commercial use.
This repository also contains reproducibility materials for two manuscripts:
-
PCF paper: Two families of polynomial continued fractions (Logarithmic Ladder, Pi Family). The Pi Family base case m=0 converges to 2/π; the Gauss CF non-membership proof is in
_gauss_cf_phase2.py. -
V_quad paper: Irrationality proof for constant V_quad via Wronskian, supported by >20,000 PSLQ exclusion runs.
python _gauss_cf_identification.py # Exploratory analysis
python _gauss_cf_phase2.py # Definitive Gauss CF non-membership proof
pytest tests/test_phase2.py -v # Smoke tests| File | Description |
|---|---|
_gauss_cf_identification.py |
Exploratory CF analysis (8 sections) |
_gauss_cf_phase2.py |
Definitive proof: Gauss matching, SymPy exact, series ID |
tests/test_phase2.py |
Automated smoke tests (pytest) |
gen_convergence_plot.py |
Generates convergence.png |
coeff_table.csv |
First 10 CF coefficients in rational form |
summary.tex |
One-page LaTeX mathematical summary |
pslq_table.csv |
PSLQ exclusion run summary |
pslq_appendix.md |
Detailed PSLQ methodology and raw outputs |
conjecture1_report.md |
Closed-form search for p_n(1) |
requirements.txt |
Python dependencies |
README.md |
This file |