I recently encountered the following question:
How to find the $n$th term of the sequence $2,3,6,7,14,15,30,\dots$?
I replied to that post, and gave the following answer: $S_n = {2}^{\lceil\frac{n}{2}\rceil}+2(\frac{n}{2}-\lfloor\frac{n}{2}\rfloor-1)$
As part of the the question, OP noted that every element was equal either to the previous element times $2$ or to the previous element plus $1$. But if he/she hadn't done so, then I could have just as well used Lagrange Polynomial Interpolation in order to provide the following answer:
$\displaystyle\frac{7x^6}{60}-\frac{163x^5}{60}+\frac{299x^4}{12}-\frac{1369x^3}{12}+\frac{8159x^2}{30}-\frac{1566x}{5}+135$
Now I would like to ask the "sort of opposite" question:
Can we prove that there is no polynomial solution for the original problem?
In other words, can we prove that no polynomial $P(x)$ exists, such that $\forall{n}\in\mathbb{N}:P(n)=S_n$?