Table & index sizes along which indexes are being scanned and how many tuples are fetched. See Disk Usage for another view that includes both table and index sizes.
Works with PostgreSQL >=8.1
SELECT
t.tablename,
indexname,
c.reltuples AS num_rows,