multSeq: Create combined sequences of sequential numbers.
Description
The function takes two vectors (of type integer) of equal length.
For each entry pair (p,q) the returned vector contains p:q.
Therefore c(a, b, c) and c(x, y, z) produces c(a:x, b:y, c:z).