After some scraping, and trying to find a decent way to graph then data (I ended up using Google Charts, via pyGoogleChart), here is a graph of the average reputation vs age:
Doesn't really prove much, but it was an interesting little project to code, and I thought someone on here may be interested in the graph.
It's by no means perfect, as many users haven't filled in the age correctly, and the average reputation is much higher with less popular ages (thus the high spikes - if the only person whose age is 58 has a reputation of 1000, the average will be 1000..)
[Update. Code!]
I've uploaded the code I used to Github. It's not exactly the greatest code ever, but it works ("on my machine").
so_profile_scraper.py parses the http://stackoverflow.com/users/1/ .../2/ profiles into a sqlite3 database.
The scraper will put quite a strain on poor StackOverflow's servers, so only run it if you really need too - I've provided the data I scraped (from user 1 to 21019, around september 24th) in...
so_userinfo.sqlite3 (You'll need to either use the Download button in the description box, or git clone the repository to get the file)
so_agedist.py uses the so_userinfo.sqlite3 database and the pygooglecharts module to generate the above graph. I'm sure there are many more interesting things you can do with it!
