You will need to look through your list of existing account names, and find all those that have the form "account name" + "_" + a number.
A regex is probably a good way to do that:
^(AccountNameYouAreLookingFor)(\d+)$
Then convert the second group - the digits - into a number, find the highest one, and add one to create your new account name.