Here's my SPARQL query to list mathematicians with their Wikipedia links and images:
SELECT DISTINCT ?pers ?persLabel ?nameLabel ?persDescription ?link ?img
WHERE {
?pers wdt:P31 wd:Q5.
{?pers wdt:P101* wd:Q395} union {?pers wdt:P106* wd:Q170790}.
?pers wdt:P734 ?name.
optional {?link schema:about ?pers; schema:isPartOf <https://en.wikipedia.org/>. }
optional {?pers wdt:P18 ?img. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
limit 100
Now what I want next is filter the list by the most famous / popular entries using some kind of popularity index. In a Wikimedia Action API query, I would have used the page viewcount property to get average view counts over some period (say 60 days), and thus would land at an estimate of the user popularity of the articles, e.g.
Yet I don't know if such metrics exists for Wikidata as well, or whether any other index may be used for this purpose.