I obtained the following Fibonacci identities experimentally using SageMath code. Can these be proved theoretically?
Identity 1: $$ \sum_{n = 0}^{\infty} \frac{F_{n}x^{n}}{n!} + e^x\sum_{n = 0}^{\infty} \frac{F_{n}(-x)^{n}}{n!} = 0 $$
Identity 2:
$$ 52\sum_{n = 0}^{\infty} \frac{F_{4n}x^{4n}}{4n!} = 156 \sum_{n = 0}^{\infty} \frac{F_{4n+1}x^{4n+1}}{(4n+1)!} = 585 \sum_{n = 0}^{\infty} \frac{F_{4n+2}x^{4n+2}}{(4n+2)!} = 630 \sum_{n = 0}^{\infty} \frac{F_{4n+3}x^{4n+3}}{(4n+3)!} $$
Using Binet's formula we have
$$\sum_{n}\frac{F_nx^n}{n!} =\frac1{\sqrt5}\left(\sum_n\frac{(\phi x)^n}{n!} -\sum_n\frac{(-\phi^{-1} x)^n}{n!}\right) =\frac1{\sqrt5}(e^{\phi x}-e^{-\phi^{-1}x})$$
while,
$$e^x\sum_{n}\frac{F_n(-x)^n}{n!} =\frac{e^x}{\sqrt5}\left(\sum_n\frac{(-\phi x)^n}{n!} -\sum_n\frac{(\phi^{-1} x)^n}{n!}\right) =\frac1{\sqrt5}(e^{(1-\phi) x}-e^{(1+\phi^{-1})x})$$
and the first identity is consequence of the equality $1-\phi=-\phi^{-1}$.
EDIT: I've just checked numerically the second identity, and apparently it is false. The original question included a snippet of SAGE code, and I think the problem was that $4r$ is interpreted as $4$ by SAGE.