/- 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

Erdős Problem 260

Reference: erdosproblems.com/260

namespace Erdos260 open Filter

Let $a_1 < a_2 < \cdots$ be an increasing sequence such that $\frac{a_n}{n} \to \infty$. Is the sum $\sum_{n}^{\infty} \frac{a_n}{2^{a_n}}$ irrational?

@[category research open, AMS 11] theorem declaration uses 'sorry'erdos_260 : answer(sorry) a : , s : , StrictMono a Tendsto (fun n => (a n : ) / n ) atTop atTop HasSum (fun n => (a n : ) / 2 ^ a n) s Irrational s := sorry -- TODO: Add a proof of the theorem under the strong assumption $a_{n+1}-a_n → \infty$ -- TODO: Add a proof of the theorem under the strong assumption $a_n \gg n\sqrt{\log{n}\log{\log{n}}}$ end Erdos260