This is an initial value problem.
y''=y'+y, y(0)=0 and y(1)=1
I am solving it by deriving the Fibonnacci power series.
The sum of F_n from n=0 to infinity is 0,1,1,2,3,5,8,13 of Fibonnacci numbers defined by F_o = 0, F_1 =1. F_n = F_n-2 + F_n-1 for n>1.
Here is what I have attempted so far...