sed - remove the first lines from the file

sed '1d' file.txt
to remove first 3 lines:
sed '1,3d' file.txt