mfb said:
Without more details, "finding some expression that looks correct" is the best approach.
The first one does not look like 2x.
Actually the first one is 2x+100, which is asymptotic to 2x as x -> infinity
--------------------------------------------------------------
Isn't there any way of creating another series from the complicated one and doing "stuff" to it.
For instance, in my first example, I could do create another series bn = a
n+1-a
n
bn would be 2, 2, 2, 2, ...
The function that makes bn would be g(n)=2;
And I know that doing this subtraction thing is kind of taking the derivative from the ff:
f'(x) ~ f(x+1) - f(x) <- this is true for polynomial functions, idk about other kinds of functions though
and so, I could integrate (2 dx) which will give me 2x.
Basically, taking the "approximate derivative" to get a simpler sequence. Get the function for that sequence and do anti derivatives.
----------------------------------------------
This technique on another sequence:
1, 5, 11, 19, 29, 41, 55, 71, 89, 109, ...
(subtract)
4, 6, 8, 10, 12, 14, 16, 18, 20, ...
(subtract)
2, 2, 2, 2, 2, 2, 2, 2, ...
h(n) = 2
g(n) = 2x (anti derivative of h(n))
f(n) = x^2 (anti derivative of g(n))
and this method spits out x^2