I want to create a function that have multiple (infinite) steps like this one:
$x+\sin x$
But i want to have control of two things: how quickly it increases and when the (soft) steps occur.
For example: for the function $\frac{1}{(1+e^{-x})}$ which has the following graph:

We can make the step rise faster by multiplying x by a big number.
One possible way to write such a function is writing it as a sum of previous function: $\sum_{i=0}^4 \frac{1}{1+e^{-(x-i)*5}}$
Unfortunately I can't use this kind of series to solve my problem. How can I obtain such function?



