ssh user@host "nohup command1 > /dev/null 2>&1 &; nohup command2; command3"
or
ssh user@host "$(nohup command1 > /dev/null 2>&1 &) && nohup command2 >> /path/to/log 2>&1 &"