Consider the ODE $\dot y=f(t,y)$.
- Explicit Euler says: $$y_{n+1}=y_n+hf(t_n,y_n)\tag{1}$$
- Implicit Euler says: $$y_{n+1}=y_n+hf(t_{n+1},y_{n+1})\tag{2}$$
The above schemes are well-known. In a way similar to what is done in Heun's method, we could make Explicit the Implicit Euler scheme as follows:
- Plug (1) in the right handside of (2) to get: $$y_{n+1}=y_n+hf(t_{n+1},y_n+hf(t_n,y_n))=0\tag{3}$$
- We could also plug (2) (possibly multiple times) into the right handside of (2) to get $$y_{n+1}=y_n+hf(t_{n+1},y_n+hf(t_{n+1},y_{n+1}))=0\tag{4}$$ or $$y_{n+1}=y_n+hf(t_{n+1},y_n+hf(t_{n+1},y_n+hf(t_{n+1},y_{n+1})))=0\tag{5}$$
We could finally make (5) explicit by plugging (1) into its right handside, as follows: $$y_{n+1}=y_n+hf(t_{n+1},y_n+hf(t_{n+1},y_n+hf(t_{n+1},y_n+hf(t_n,y_n))))=0\tag{6}$$ I have never heard of the schemes above. Maybe they bear no specific good numerical features. Are there known results on this?