Im trying to generate a list of all Numbers bigger than 0 with the following conditions:
- all elements are odd
- all elements divide trough 7 without remainder
- all elements divide trough 9 with remainder 3
e.g. [21,147,273,399,...]
I tried : [x | x <- [1..] , odd x, x / 2 == 0, ...
(and here I had problems)