Ok so i have this query
PREFIX rdfs: SELECT DISTINCT (COUNT(?instance) AS ?count) WHERE { ?instance a
You might want to try this:
PREFIX rdfs: SELECT (COUNT(DISTINCT ?instance) AS ?count) WHERE { ?instance a ; ?name }
It's giving me a result of 283, which might or might not be right :).