I have the following equation which is making me problems. $$A_{n} = \sum_{k=0}^{n} \binom{n-k}{k}(-1)^{k}$$ where $n\in\mathbb{N}$. The task is to find a closed form expression for $A_{n}$. I have two questions:
What is a closed form expression? We never defined it in my combinatorics class and on the internet there are several different definitions.
How can I find a closed form expression for $A_{n}$? Looking at Pascal's triangle, I think it might have something to do with fibonacci numbers, but still I have absolutely no idea how I can approach this task.
I would appreciate any kind of help leading to the solution, as I have to hand this in within the next 2 days. Thanks a lot and have a great day.
Note: As @Lucian already indicated, a closed form is an expression without using sigma signs. A closed form is regarded as simpler than a non-closed form, since we do not have to iterate using indices.
$$$$
Comment:
We find \begin{align*} a_0&=\sum_{k=0}^0\binom{0-k}{k}(-1)^k=\binom{0-0}{0}(-1)^0=1\\ a_1&=\sum_{k=0}^1\binom{1-k}{k}(-1)^k=\binom{1-0}{0}(-1)^0=1\\ a_2&=\sum_{k=0}^2\binom{2-k}{k}(-1)^k=\binom{2-0}{0}(-1)^0+\binom{2-1}{1}(-1)^1=1-1=0 \end{align*}