I am trying to find a way to create a finite sequence of natural numbers with the property that no single element is the sum of a combination of other elements. It's simple with short sequences, is it possible as well if I have a minimum length of say 1000 elements?
So trying to put this into a formula; for a sequence of length n, each element $x_i$ and natural number constant $c_i \in [0, 1]$, the sum $\sum_{j=1}^{i-1} c_j*x_j + \sum_{j=i+1}^{n-1} c_j*x_j$ does not equal $x_i$.