Erdős Problem 269 #
Reference: erdosproblems.com/269
A positive integer $n$ has all its prime factors in the set $P$. By convention, $1$ satisfies this for any $P$ as it has no prime divisors.
Instances For
The infinite, strictly increasing sequence $\{a_0, a_1, \dots\}$ of integers
whose prime factors all belong to P
.
Equations
Instances For
The n
-th partial least common multiple, $[a_0, \dots, a_n]$, which is
the LCM of the first n
integers in the sequence.
Equations
- Erdos269.partialLcm P n = (Finset.range n).lcm (Erdos269.a P)
Instances For
The sum $\sum_{n=1}^\infty \frac{1}{[a_0,\ldots,a_{n - 1}]}$.
Equations
- Erdos269.series P = ∑' (n : ℕ), 1 / ↑(Erdos269.partialLcm P n)
Instances For
Let $P$ be a finite set of primes with $|P| \ge 2$ and let $\{a_1 < a_2 < \dots\}$ be the set of positive integers whose prime factors are all in $P$. Is the sum $$ \sum_{n=1}^\infty \frac{1}{[a_1,\ldots,a_n]} $$ rational?
Let $P$ be a finite set of primes with $|P| \ge 2$ and let $\{a_1 < a_2 < \dots\}$ be the set of positive integers whose prime factors are all in $P$. Is the sum $$ \sum_{n=1}^\infty \frac{1}{[a_1,\ldots,a_n]} $$ irrational?
This theorem addresses the case where the set of primes P
is infinite. In this case the sum is
irrational.