The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

Off-the-shelf language models can autonomously prove many formalized OEIS conjectures: Claude Opus 4.8 solved 30% of 492 problems at $50 a try, while the best models solved 44% of a 100-problem subset with $200 budgets—access to large math corpora or more elaborate agent loops provided no clear benefit.

OEIS Open: How many conjectures can language models turn into theorems?
Tom Adamczewski · August 12, 2026
arxiv descriptive medium evidence 8/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Tom Adamczewski unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Tomasz Adamczewski provider ID
Using a secure Lean-based benchmark of 492 OEIS conjectures, simple tool-enabled language-model agents autonomously resolved a substantial fraction (30% at $50 per conjecture; up to 44% on a 100-problem subset at $200), demonstrating that current LMs can produce formally verified proofs on many open problems in this corpus.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

We construct OEIS Open, a benchmark based on 492 open mathematical conjectures from the OEIS, formalized in Lean by Tsoukalas et al. Whereas these conjectures had previously been attempted only with a bespoke agent, our open-source evaluation code runs any generic language model (LM) against them, and is secure against LM cheating attempts. We find that LMs equipped with a minimal set of tools resolve 147 of these conjectures with a budget of \$50 per attempt, scoring 30% on OEIS Open. OEIS Open Lite is a random subset of 100 conjectures for cheaper evaluation. When evaluated with a budget of \$200 per attempt, the best current LM scores 44% on OEIS Open Lite. Giving LMs access to the mathematics literature via 476,000 papers from arXiv did not increase performance on OEIS Open Lite, and nor did using more sophisticated agent loops. The conjectures covered in this work are of uncertain mathematical significance, and most have likely received little previous attention. Nevertheless, our results show that LMs can resolve open research conjectures autonomously and at modest cost.

Summary

Main Finding

Language models, equipped with a minimal toolset and run in a secure formal-verification harness, can autonomously convert a substantial fraction of open OEIS conjectures into machine-checked theorems. On a 492-conjecture Lean benchmark (OEIS OPEN) LMs resolved 147 conjectures (30%) using a $50-per-conjecture budget; on a 100-conjecture subset (OEIS OPEN LITE) the best model reached 44% with $200-per-conjecture. More complex agents or giving models access to a 476k-paper arXiv math corpus did not improve results. Solve rates increase roughly log-linearly with per-instance spend.

Key Points

  • Benchmark: OEIS OPEN — 492 open conjectures from the OEIS, formalized in Lean (derived from Tsoukalas et al.).
  • Top result (OEIS OPEN, $50/case): Claude Opus 4.8 resolved 30% (147/492). Other models: GPT-5.5 (26%), Gemini 3.5 Flash (22%).
  • OEIS OPEN LITE (100 cases, $200/case): best models ≈ 43–44% (Claude Fable 5, GPT-5.6 Sol).
  • Baseline comparison: AlphaProof Nexus (more elaborate search) previously resolved ~9% on the same 492 problems; the simple ReAct-style agent here substantially outperformed it.
  • Agent simplicity: a minimal ReAct loop with three tools (bash, text editor, budget/resource reporter) plus a Lean toolchain, SageMath, and Python libraries sufficed; richer agents (DeepAgent) did not improve accuracy.
  • Adding literature (476k arXiv math papers, up to 2022) did not improve solve rates.
  • Cost efficiency: average cost per resolved conjecture in runs was low (roughly $6–$10 depending on model); solve rate scales roughly linearly with log(spend) — ~10 percentage points gained per tenfold spend increase.
  • Security/verifiability: submissions accepted only if SafeVerify (kernel-level replay/check) in an isolated container accepts them; compilation and verification split across isolated containers to prevent cheating.
  • Limitations noted by authors: uncertainty about the mathematical significance of these conjectures, risk of misformalization, potential for solved proofs to leak into future training data (changing difficulty), and lack of credit for reductions to known hard problems.

Data & Methods

  • Problem source and formalization
    • Starting pool: 2,649 OEIS open conjectures; Gemini selected 500 candidates and Tsoukalas et al. formalized them in Lean; final set analyzed here is 492 conjectures.
    • Conjectures mostly concern integer sequences—chosen to reduce misformalization risk.
  • Metadata
    • For each conjecture the authors extracted proposer, proposal date, and measures of literature attention (OEIS entry links/references and OpenAlex full-text matches). GPT-5.5 was used to match Lean statements to OEIS text.
    • Observed concentration: a small number of prolific proposers (e.g., Zhi-Wei Sun contributed ~37%).
  • Verification pipeline
    • Proofs must be submitted as Lean source and pass SafeVerify (adapted from lean4checker). SafeVerify replays declarations through a fresh kernel and enforces a three-axiom whitelist; it rejects axioms or environment tampering.
    • Three-container sandbox: agent container (no network), compile container (clean toolchain produces olean), and scorer container (runs SafeVerify against trusted statement olean). This isolates and mitigates many attack vectors.
  • Agent design and tools
    • Base agent: ReAct-style loop (Inspect library) with tools: bash, text editor, resource reporter. Provided runtime: Lean 4 + Mathlib, SageMath, Python (sympy, mpmath, numpy, pantograph).
    • Variants: (1) Literature-enabled agent (offline LaTeX of 476k arXiv math papers), (2) DeepAgent (adds subagents, persistent memory, todo list, more opinionated prompt).
    • Agents allowed to either prove or disprove a conjecture. Per-conjecture caps: $50 for full set runs; $200 for LITE; 72-hour runtime cap.
  • Models evaluated (examples)
    • Claude Opus 4.8, GPT-5.5, Gemini 3.5 Flash, Claude Fable 5, GPT-5.6 Sol (some models evaluated only on LITE).
  • Outcome measurement
    • A conjecture is counted resolved when a submitted proof/disproof passes SafeVerify. Cross-checks with another verifier (Comparator) changed a few verdicts but not high-level conclusions.

Implications for AI Economics

  • Low marginal cost to produce formal results (per-proof)
    • Measured average cost per resolved conjecture was on the order of single-digit U.S. dollars ($6–$10) under the reported budgets. If broadly representative, automated formal proving could be a highly cost-effective way to produce verifiable mathematical results, implying high short-term returns to deploying inference compute for discovery tasks with formal verification.
  • Diminishing but steady returns to inference spending
    • Solve rates rise roughly linearly with log(spend), so improving total solved share requires exponential increases in per-instance spend for linear absolute gains. This shapes cost-benefit tradeoffs: modest budgets yield many low-hanging results; moving to majority-solve rates becomes increasingly expensive.
  • Development vs. deployment investment tradeoff
    • A very simple agent plus off-the-shelf LMs outperformed a bespoke, compute-heavy evolutionary system. For commercial or academic services, this suggests higher ROI from investing in model access and simple tooling rather than complex bespoke search infrastructure—lower engineering costs to reach strong performance.
  • Data-acquisition value may be task-dependent
    • Adding a large offline literature corpus (476k arXiv math papers) did not help on these OEIS conjectures. For product decisions, the marginal value of collecting/curating large specialized corpora can be small for some automated discovery tasks—implying careful prior analysis before investing heavily in data procurement for similar tasks.
  • Market and incentive effects
    • If automated systems can cheaply produce formal proofs for many open (though not necessarily high-impact) conjectures, markets may emerge for automated theorem-proving-as-a-service, formalization pipelines, and verification tooling. However, the economic value of solved problems depends on their external scientific importance, which here is unclear for many OEIS conjectures.
  • Externalities and measurement challenges
    • Resolved conjectures entering training data create positive feedback (easier solves later) and complicate benchmarking and competition among providers (models may reproduce seen proofs). This poses an economic externality: early solvers create assets that advantage later models unless benchmarks and evaluations proactively filter solved items.
  • Risk, reliability, and downstream cost
    • Misformalization risk and differences between formalization effort and mathematical significance introduce potential reputational and verification costs. Buyers of automated-proving services or funders should budget for human audit, curation, and validation when high-stakes or high-value results are sought.
  • Policy and public-good considerations
    • The benchmark and verification infrastructure are reusable public goods. Public investment or open releases can have high social value by enabling independent evaluation, reproducibility, and competition—lowering barriers to entry for small actors in automated research services.

Overall, the paper shows that accessible LM + tooling setups can produce many machine-checked theorems at modest monetary cost, but economic value per theorem depends on problem importance, and scaling to higher coverage requires substantially more spend.

Assessment

Paper Typedescriptive Evidence Strengthmedium — The paper presents well-instrumented, reproducible empirical evidence that contemporary LMs can produce formally verified proofs on a sizeable, curated set of 492 OEIS conjectures; verification is strong (Lean kernel replay, SafeVerify/Comparator, container isolation). However, external validity is limited by selection bias (problems were auto-selected by an LLM and likely low-profile), misformalization risk, and dependence on budget/agent design, so the evidence does not firmly establish broader claims about AI-driven mathematical discovery generally. Methods Rigorhigh — The evaluation uses formalized conjectures in Lean, rigorous kernel-level verification (SafeVerify and cross-check with Comparator), containerized isolation to prevent cheating, multiple models and ablations (agent variants, literature access), and sensible budgeting; weaknesses are lack of independent human validation of all formalizations and potential selection bias in the problem set. Sample492 open conjectures from the OEIS formalized in Lean (444 distinct sequences); a random LITE subset of 100 problems for higher-budget runs. Models evaluated include Claude Opus 4.8, GPT-5.5, Gemini 3.5 Flash, and newer models (Claude Fable 5, GPT-5.6 Sol) on LITE. Agents: a simple ReAct-style tool loop (Lean 4, Mathlib, SageMath, Python libs), plus variants with access to a 476k-paper arXiv snapshot and a DeepAgent loop. Budgets: $50 per conjecture on full set, $200 on LITE; per-conjecture time capped (up to 72 hours). Proofs judged via SafeVerify (and Comparator cross-check). Themesproductivity innovation GeneralizabilitySelection bias: candidate problems were filtered/selected by an LLM and may not represent typical or high-value open mathematical problems, Misformalization risk: some Lean formalizations may not match the intended informal conjecture, possibly making tasks easier, Domain restriction: only integer-sequence conjectures formalizable with available Mathlib definitions were included, Budget and agent-dependence: solve rates rise with spend and are sensitive to per-conjecture budgets and model versions, Results may not generalize to deep, high-profile open problems or to non-formalization-heavy mathematical tasks

Claims (10)

ClaimDirectionOutcomeConfidence & EvidenceDetails
Language models equipped with a minimal tool set resolved 147 of the 492 OEIS OPEN conjectures with a spending cap of $50 per conjecture, scoring 30%. Research Productivity positive Fraction of formalized mathematical conjectures autonomously resolved
Reading fidelity high
Study strength high
n=492
30% (147/492)
0.3
On the full OEIS OPEN benchmark, Claude Opus 4.8 resolved 30% of conjectures, GPT-5.5 resolved 26%, and Gemini 3.5 Flash resolved 22%. Research Productivity positive Model solve rate on formalized open mathematical conjectures
Reading fidelity high
Study strength medium
n=492
30%, 26%, and 22%
0.18
The language-model agents outperformed the reported AlphaProof Nexus baseline on the same 492 conjectures. Research Productivity positive Number and percentage of conjectures resolved relative to a prior AI theorem-proving system
Reading fidelity high
Study strength medium
n=492
30% versus 9% reported baseline
0.18
With a $200 budget per conjecture on OEIS OPEN LITE, language models resolved between 29% and 44% of the 100 conjectures, with Claude Fable 5 achieving the highest reported rate. Research Productivity positive Solve rate on the OEIS OPEN LITE conjecture subset
Reading fidelity high
Study strength medium
n=100
29% to 44%
0.18
Providing language models access to 476,000 pure-mathematics arXiv papers did not improve their OEIS OPEN LITE accuracy. Research Productivity null_result Accuracy in resolving formalized conjectures
Reading fidelity high
Study strength medium
n=100
0.18
Using the more sophisticated DeepAgent loop did not improve accuracy on OEIS OPEN LITE relative to the base agent. Research Productivity null_result Accuracy in resolving formalized conjectures
Reading fidelity high
Study strength medium
n=100
0.18
Solve rates increased roughly linearly with the logarithm of per-conjecture spending, by approximately ten percentage points for each tenfold increase in spending. Research Productivity positive Conjecture solve rate as a function of inference-time spending
Reading fidelity high
Study strength medium
roughly 10 percentage points per tenfold increase in spend
0.18
Based on the LITE results, the authors estimate that the best current models would resolve approximately 216 of the 492 full-set conjectures with a $200 budget per conjecture. Research Productivity positive Projected number of conjectures resolved at a higher spending budget
Reading fidelity high
Study strength speculative
n=492
about 216 conjectures
0.03
The benchmark accepts only proofs of a conjecture or its negation that pass Lean-kernel verification, making accepted solutions definitive proofs rather than merely computational evidence. Ai Safety And Ethics positive Validity and verifiability of theorem-proving benchmark outcomes
Reading fidelity high
Study strength high
n=492
0.3
The 492 conjectures concern 444 distinct OEIS sequences, and 47% of the conjectures come from sequence entries listing no links or references. Research Productivity negative Literature attention and provenance of benchmark conjectures
Reading fidelity high
Study strength medium
n=492
47% with no listed links or references
0.18

Notes