The below query helps you to find out the actual index count in your database whether it is Clustered or Non-clustered.
It also provides you the count of tables without any indexes(Heaps)....
SELECT i.type_desc, count(*) as cnt FROM sys.indexes i INNER JOIN sys.objects o ON i.object_id = o.object_id WHERE o.type<>'S' GROUP BY i.type_desc