/- Copyright 2025 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 516

References:

    erdosproblems.com/516

    [Fu63] Fuchs, W. H. J., Proof of a conjecture of G. Pólya concerning gap series. Illinois J. Math. (1963), 661--667.

    [Ko65] Kövari, Thomas, A gap-theorem for entire functions of infinite order. Michigan Math. J. (1965), 133--140.

open scoped Natopen Filter Real Set namespace Erdos516

An entire function f is said to be of finite order if there exist numbers c, a ≥ 0 such that for all z, ‖f z‖ ≤ c * rexp (‖z‖ ^ a).

def OfFiniteOrder {E F: Type*} [NormedAddCommGroup E] [NormedSpace E] [NormedAddCommGroup F] [NormedSpace F] (f : E F) : Prop := Differentiable f c 0, a 0, z, f z c * rexp (z ^ a) noncomputable def ratio (r : ) (f : ) : := ( z : {z : // z = r}, f z).log / ( z : {z : // z = r}, f z).log

Let f = ∑ aₖzⁿₖ be an entire function of finite order such that nₖ / k → ∞. Then limsup (fun r => ratio r f) atTop = 1. This is proved in [Fu63].

@[category research solved, AMS 30] theorem declaration uses 'sorry'erdos_516 {f : } {n : } (hn : HasFabryGaps n) {a : } (ha : n, a n 0) (hfn : z, HasSum (fun k => a k * z ^ n k) (f z)) (hf : OfFiniteOrder f) : limsup (fun r => ratio r f) atTop = 1 := f: n: hn:HasFabryGaps na: ha: (n : ), a n 0hfn: (z : ), HasSum (fun k => a k * z ^ n k) (f z)hf:OfFiniteOrder flimsup (fun r => ratio r f) atTop = 1 All goals completed! 🐙

Let f = ∑ aₖzⁿₖ be an entire function such that nₖ > k (log k) ^ (2 + c). Then limsup (fun r => ratio r f) atTop = 1. This is proved in [Ko65].

@[category research solved, AMS 30] theorem declaration uses 'sorry'erdos_516.variants.limsup_ratio_eq_one {f : } {n : } (hn : c > (0 : ), k, n k > k * log k ^ (2 + c)) {a : } (ha : n, a n 0) (hfn : z, HasSum (fun k => a k * z ^ n k) (f z)) : limsup (fun r => ratio r f) atTop = 1 := f: n: hn: c > 0, (k : ), (n k) > k * log k ^ (2 + c)a: ha: (n : ), a n 0hfn: (z : ), HasSum (fun k => a k * z ^ n k) (f z)limsup (fun r => ratio r f) atTop = 1 All goals completed! 🐙

Is it true that for all entire functions f = ∑ aₖzⁿₖ such that ∑' 1 / nₖ < ∞, limsup (fun r => ratio r f) atTop = 1?

@[category research open, AMS 30] theorem declaration uses 'sorry'erdos_516.variants.limsup_ratio_eq_one_of_hasFejerGaps : answer(sorry) {f : } {n : } (hn : HasFejerGaps n) {a : } (ha : n, a n 0) (hfn : z, HasSum (fun k => a k * z ^ n k) (f z)), limsup (fun r => ratio r f) atTop = 1 := True {f : } {n : }, HasFejerGaps n {a : }, (∀ (n : ), a n 0) (∀ (z : ), HasSum (fun k => a k * z ^ n k) (f z)) limsup (fun r => ratio r f) atTop = 1 All goals completed! 🐙 end Erdos516