Background: I am investigating partitioning integers using a fixed radix base.
Problem: Suppose we have $x$, an arbitrary integer. Let $M = \{2, 3, 5, ..., p\}$ be a set of prime moduli.
The prime factorization $$x = 2^{e_0}3^{e_1}5^{e_2} \cdots p^{e_p}, e_j \ge 0 \tag 1$$ is not always possible since $x$ may have a factor $q \notin M$.
Suppose we partition $x$ into $k$ partitions as $$x = x_0 + x_1 + \cdots + x_{k-1} \tag{2}$$
Is it true that there exists a partition of $x$ such that $\forall x_i$ in that partition, there is a representation of the form $(1)$?
Trivially, if we take $M = \{2\}$, we get the sum of powers of $2$ (binary representation) as the partition of $x$. So, we know the partition exists when $M$ is a singleton set consisting of a single element $b$ since a base-$b$ representation for $x$ can be found.
Also, a trivial partition exists by setting the exponents to $0$ (and we get the unitary representation $x = 1 + 1 + \cdots + 1$ ($x$ times).
I suppose one could find the largest integer smaller than $x$ in the form $(1)$ and then use the unitary representation for the residual. So, the answer to the existence question is probably True.
Define a non-trivial partition as one in which each part has more than one prime factor.
Define an optimal non-trivial partition as a non-trivial partition of length $k$ (i.e., $k$ parts with each part having more than one prime factor) with $k$ minimal.
Does an optimal non-trivial partition with not all exponents $0$ exist when $M$ is a non-trivial set of primes?