n-step Returns are used for value function estimation in reinforcement learning. Specifically, for n steps we can write the complete return as:
R_t(n)=r_t+1+γr_t+2+⋯+γn−1_t+n+γnV_t(s_t+n)
We can then write an n-step backup, in the style of TD learning, as:
ΔV_r(s_t)=α[R_t(n)−V_t(s_t)]
Multi-step returns often lead to faster learning with suitably tuned n.
Image Credit: Sutton and Barto, Reinforcement Learning