"does this mean that this connection is being reused?"
yes
"Why do I have so many "
7 is not many, 454 is many.
You have 7 because apparently your system requires 7 open connections.
Database connections can only be used by one script at a time. So if your site runs 7 scripts at the same time, it needs 7 database connections at the same time.
Many people think that using pconnect will magically reduce the number of open connections, but in fact the number stays the same, they just last longer and are therefor faster to 'connect' to.