I'm looking for a proper way to sum each member of a group with each member of another group for two group or even more group of numbers , which does not have duplicate numbers , for example let's get this two group {0,2,4,6,8}+{0,1,2,3} which both have a relation in there members
$\{0,2,4,6,8\}=2k\quad $ for $\quad0\le$k$\le 4 $
$\{0,1,2,3\}=k\quad$ for $\quad0\le$k$\le 3 $
if we write them in row and column the sum of each one is
$0 \quad 2 \quad 4 \quad 6 \quad 8$
$1 \quad 3 \quad 5 \quad 7 \quad 9$
$2 \quad 4 \quad 6 \quad 8 \quad 10 $
$3 \quad 5 \quad 7 \quad 9 \quad 11$
so if we remove the duplicate ones we will have this finale group
$\{0,1,2,3,4,5,6,7,8,9,10,11\}=k \quad $ for $\quad0\le$k$\le 11 $
As we see in this case the result has a good form "1k" but it doesn't have a good form in every case .
for a bad form example
$\{0,2,4,6,8\}=2k\quad $ for $\quad0\le$k$\le 4 $
$\{0,3,6,9\}=3k\quad$ for $\quad0\le$k$\le 3 $
$0 \quad 2 \quad \;\,4 \quad\;\, 6 \quad\;\, 8$
$3 \quad 5 \quad \;\, 7 \quad \;\, 9 \quad\;\, 11$
$6 \quad 8 \quad \;\, 10 \quad 12 \quad 14 $
$9 \quad 11 \quad 13 \quad 15 \quad 17$
as you see we can show
$\{2,3,4,5,6,7,8,9,10,11,12,13,14,15\}=1k\quad $ for $\quad2\le$k$\le 15 $
but we can not easily put 0 and 17 in the form of $1k$ or $nk$ so it's bad form and if we keep it like how it was is better than this.
I searched a lot base one my little knowledge for a way to sum more than two group like this and write result in best form .
pleas if you know a way in math that works on this stuff or any idea help . thanks