You need to revisit your question.
That series
x=(-1;1): 1/x + x/3! - x^3/3*5! + x^5/5*7! - x7/7*9! .... |
(with a strange term 1/x in) isn't going anywhere when x=0.
For the remainder of the series:
x/3! - x^3/3*5! + x^5/5*7! - x7/7*9! ....
Start with term x/6 and set the sum equal to it.
Multiply your term by -(1/3)*x*x/(4 * 5) and add it to the sum.
Multiply your term by -(3/5)*x*x/(6 * 7) and add it to the sum.
Multiply your term by -(5/7)*x*x/(8 * 9) and add it to the sum.
Spot the pattern? Stop when the absolute value of the term is less than eps.
The one thing you should NOT do is work out a factorial for every term, despite the way it looks as if it is defined.