awk -v nr=N '{ for (x=nr; x<=NF; x++) {printf $x " "; }; print " " }'
Use awk to print from field N to the end of the line.