sed s/^....//
But sed doesn't suppor the "optional" question mark modifier so lines with less than n characters would not be matched.It turns out you can turn on extended regex support with "-r" or "--regexp-extended" allowing the following.
sed s/^.?.?.?.?//