I'm looking for the simplest function that can model this graph:

The source is predicted speed figure by age. I've tried wolfram alpha for polynomial interpolation:
InterpolatingPolynomial[{{2, 45}, {3, 60}, {4, 70}, {5, 70}, {6, 69}, {7, 67}}, x]
And excel trend charts, both being unsatisfactory. Specifically the 'kinks' that come from polynomials. It feels like a composition of log/exponential functions however I'm not familiar with using non-linear regression (attempting to use R).
Log gamma is the closest I've found so far - is there a simpler function that could match?



