Try this for your main loop:
seq 1 $n | while read i
do
let "NUM=($RANDOM%75)+15"
echo "name$i $NUM (###)###-####"
done > $file
This will make the seq and the loop work in parallel instead of waiting for the seq to finish before starting the loop. This will be faster on multiple cores/CPUs but slightly slower on a single core.
And I agree with the others here: Does it have to be bash?
Edit: add chaos' suggestion to keep the file open, not open for append for each name.
