If you want to get a list of Project Admins, you can do that from Site Administration as follows:
From Site Administration (must have Site Admin permissions) goto Site Projects tab
Select the project in question and click the + sign to expand the view of the tables
Run the following query from the USERS table:
Replace the default query SELECT * FROM USERS with
SELECT US_USERNAME, US_GROUP, GR_GROUP_NAME
FROM USERS, GROUPS
WHERE US_GROUP LIKE '1%' AND GR_GROUP_NAME = 'TDADMIN'
The list of items returned will include the User Name of all the users in the TDAdmin group which is the name of the Project Administrators group and what the 1 in the first character of the US_GROUP field signifies.
Hope this helps!