Background
I come into a problem where I need to define the least common Odd multiple.
Say I have two integer $a,b \in \mathbb{N}$, I want to define $c$ such that $a|c$ and $b|c$ in an oddly number fashion, meaning $\exists i \in \mathbb{Z}, c = (2i+1)a$, and $\exists j \in \mathbb{Z}, c=(2j+1)b$.
I want to define the smallest $c \in \mathbb{N}$ that satisfie the above, i.e., $\exists i,j \in \mathbb{Z}$ such those are true.
Can it be converted to a normal LCM? Or I have to define something like odd multiple?