Run a named screen at startup that executes a bash script in detach mode on Ubuntu Server

sudo apt-get install screen && crontab -e

and add the following:

@reboot /usr/bin/screen -S MY_SCREEN_NAME -dm "/root/MY_SCRIPT.sh"