This onlinerone-liner should work:
find httpdocs -mindepth 2 -name In | xargs ls -1 | awk '$0 ~ /httpdocs.*In/{name=$0; start=NR} (NR-start)==50{print name;}'
 It will first find all In directories, then list all its files, and, finally, filter those with more than 50 files.
 Adjust -mindepth according to your start folder.
 
                