I have a problem I don't seem to be able to solve other than by brute force.
Consider the increasing sequences of $n$ positive integer numbers such that all the $n−1$ differences between any two consecutive numbers of the sequence are different from one other and from any number in the sequence.
For example, if we have a sequence of 3 numbers $\{a_1,a_2,a_3\}$, the numbers $a_1, a_2, a_3, (a_2−a_1)$ and $(a_3−a_2)$ must be all different, as in $\{2,3,7\}$, because $2 \neq 3 \neq 7 \neq 3−2 \neq 7−3$.
For each $n$, find the minimum possible value of the sum of all numbers of a sequence.
In the example above, $2+3+7=12$ but $\{1,4,6\}$ has sum $11$, so for $n=3$ the minimum sum is $11$.
Can you find the value for $n=15$? can you find a general formula?
Update 1:
The values I've found are $1,4,11,22,39,63$ for $n=1$ to 6 respectively.
In some cases the sequences with minimum sum are unique. For example, $n=4$ only $\{1,4,6,11\}$ adds up to 22; for $n=5$ only $\{1,5,7,10,16\}$ has sum 39.
For others values of $n$, there are multiple minimal sequences. For $n=3$, besides the sequence in the example above, $\{1,3,7\}$ adds up to 11 as well. For $n=6$ there are 4 sequences whose sum is 63.
For $n=7$ the best I could do is 94 (6 distinct sequences, 2 starting with 3), but I'm not sure it is minimal.
Update 2:
OESIS A005228 (thanks @JwJJJJ) provides sequences that respect the rules, but are not minimal, hence their sum is an upper bound.
For the term $a_n$ of A005228 (as shown by @C Squared in the answer below, thanks):
$0 ≤ a_{n+2} − 2 a_{n+1} + a_n − 1 ≤ 1$
It looks like that for the sum of the first $n$ terms $S_n$:
$0 ≤ S_{n+3} − 3 S_{n+2} + 3 S_{n+1} − S_n − 1 ≤ 1$
Solving the difference equation, we find that the upper bound is:
$\frac {1} {6} (6 − 7 n + 6 n^2 + n^3) ≤ S_n ≤ \frac{1}{3} (2 n + n^3)$
I'm confident one can find a better estimate than $n^3$, but not sure that the exponent could reach as low as 2.