Code:
find . -type f -printf '%20s %p\n' | sort -n | uniq -w20 -D | cut -c 22- \
 | xargs md5sum | sort | uniq -w32 -D

although you might need GNU uniq to get the -D option.

Peter