The Collatz conjecture asks you to:
When '$n$' is the given number,
1) Divide $n$ by $2$ if the number is even.
2) Do $3n+1$ when the number is odd, and you will reach the series $4->2->1$.
Can we generalize this as:
1) Divide $n$ by $2$ if the number is even.
2) Do $m \cdot (n)+1$ when the number is odd...($m$ is any odd number)
Will this always work? If not, then why? The only possible implications I can deduce from this are that the value of the peak number in the resulting series of any number will vary drastically.