Aron Y. answered 06/08/19
Tutor
4.9
(17)
Used Mathematica extensively since 2003, for scientific and genl. work
Mathematica has a command called FindSequenceFunction that checks series to see if they fit a pattern. This one does:
data = {7, 27, 50, 76};
g = FindSequenceFunction[data, x]
g /. x -> 5
=>
g=1/2 (-20 + 31 x + 3 x^2)
g/. x->5=105