putnam-v1 / putnam-1967-a2

putnam-1967-a2

open
difficulty 4
credited
Run this goal:./swarm/run.sh --goal putnam-1967-a2

What it runs

The Lean statement the swarm must prove — kernel-verified at Gate A. The trailing sorry is the open obligation a proof replaces.

goals/putnam-1967-a2.lean
import Mathlib

open Nat Topology Filter

theorem putnam_1967_a2 (S : ℕ → ℤ)
    (hS0 : S 0 = 1)
    (hSn : ∀ n ≥ 1, S n = {A : Matrix (Fin n) (Fin n) ℕ | (∀ i j, A i j = A j i) ∧ (∀ j, (∑ i, A i j) = 1)}.ncard) :
    (∀ n ≥ 1, S (n + 1) = S n + n * S (n - 1)) ∧
    (∀ x : ℝ, (∑' n : ℕ, S n * (x ^ n / (n)!)) = Real.exp (x + x ^ 2 / 2)) := by
  sorry

Runs (0)

No runs recorded for this suite yet — they appear here as the swarm attempts the benchmarks.