I think this might be a very broad question, but here it goes.
I have made a formula, using a sigma function, to give the $n$th number in a recursive sequence. I'm trying to make it into a non-iterative formula, but my efforts have only lead to formulas with iterative functions within them. I don't want to post these iterative formulas, and ask for the non-iterative version, because I find I learn best when I figure it out myself. So, instead, I am asking for general methods to do this, and for places where I can get the relevant knowledge for tasks like this.
I've read that Conway and Guy wrote a book, The Book of Numbers, with a section dedicated to this subject. However, I'd like to consider some free options before I go ahead and buy this book. After all, it could very well be it is geared towards a higher level of mathematics anyways.
EDIT:
Clarification: My current formula, for the $n$th number in a sequence, uses only $n$ as its input. It is a function of $n$. But it has iteration going on. I want to turn my $g(n)$ into $f(n)$, where $f(n)$ has no iterative operations going on.
Example:
$$\sum_{k=1}^n k= g(n)$$
This is an iterative function for finding the triangular number of $n$. The higher $n$ is, the greater the computation. I want to snip that computation away with a non-iterative formula:
$$\sum_{k=1}^n k = \binom{n+1}{2}$$
$$\binom{n+1}{2} = f(n)$$
So, what are some generally applicable methods to make $g(n)$ into $f(n)$? Where can I read about knowledge pertaining to tasks like these?
This is just the notion of evaluating discrete sums and products. You may achieve this by learning about discrete calculus.