Ok, here is the problem, I have formula: $a_n=a_{n-1}+2^{n-4}-a_{n-4}$ with initial variables $a_0=0$, $a_1=0$,$a_2=0$ and $a_3=1$
If not for $2^{n-4}$ member in recursion, I probably would manage to get general form, but $2^{n-4}$ makes things way more complicated.
Is it generally possible to transform $a_n=a_{n-1}+2^{n-4}-a_{n-4}$ into nonrecursive form, and if possible - how?
As suggested in my comment above, for such problems (linear recurrences involving tedious terms) the concept of generating functions is useful. Define $$A(x)=\sum_{k=0}^{\infty} a_nx^n$$ Now, the recursion implies $a_{n+4}x^n+a_nx^n=a_{n+3}x^n+2^nx^n$. Summing this over all $n$, we obtain $$A(x)+\frac{A(x)-x^3}{x^4}=\frac{A(x)}{x^3}+\frac{1}{1-2x}$$ Now, this is a linear equation in $A(x)$ and we can solve for it and obtain $$A(x)=\frac{x^4-x^3}{(2x-1)(x^4-x+1)}$$ Now, using partial fractions decomposition we can (in principal) reversely obtain the coefficient of $x^n$ in the series of $A(x)$ (which is just $a_n$). In this way, you can obtain (in principal) a closed form for $a_n$ although (in this case) the partial fractions might become slightly tedious...
Given the non-existence of nice closed form you might ask for a "nicer" (i.e. homogenous) recursion not involving those terms like $2^{n-4}$ for $a_n$. But this is easily obtained: We have $a_{n+1}+a_{n+5}-a{n+4}=2^{n+1}=2 \cdot 2^n=2(a_n+a_{n+4}-a_{n+3})$ and hence obtain the homogenous recursion: $$a_{n+5}=3a_{n+4}-2a_{n+3}-a_{n+1}+2a_n$$ But this is also not useful to compute a closed form using the standard way since the characteristic equation will be $0=x^5-3x^4-2x^3+x-2=(x-2)(x^4-x^3+1)$ where the second factor (similar to the one from our first attempt) is irreducible.
Remark: Note that the problems arise only from the irreducibility of the characteristic equation and not really from the $2^{n-4}$ term in the original recurrence since the latter can be easily handled by both approaches.