You can't do that entirely within a crontab entry. Best alternative is to have
cron run the script every Sunday, and then have the script itself check whether the day of month is greater than 7:
Code:
test $(date +%-d) -gt 7 && exit 0 # If not the first week, do nothing (successfully)