Conjectures associated with A087719 #
Define $\varsigma(n)$ the smallest prime factor of $n$ (Nat.minFac). Let $a_n$ be the least
number such that the count of numbers $k \le a_n$ with $k > \varsigma(k)^n$ exceeds the count
of numbers with $k \le \varsigma(k)^n$.
The conjecture states that $a_n = 3^n + 3 \cdot 2^n + 6$ for $n \ge 1$.
References: A087719
Count of numbers k in {1, ..., m} where k > (minFac k)^n.
Equations
- OeisA87719.countExceeding n m = {k ∈ Finset.Icc 1 m | k > k.minFac ^ n}.card
Instances For
Count of numbers k in {1, ..., m} where k ≤ (minFac k)^n.
Equations
- OeisA87719.countNotExceeding n m = {k ∈ Finset.Icc 1 m | k ≤ k.minFac ^ n}.card
Instances For
There exists m such that countExceeding n m > countNotExceeding n m.
The sequence a(n): least m such that countExceeding n m > countNotExceeding n m.
Equations
- OeisA87719.a n = Nat.find ⋯