The summation operator ($\sum$) and the product operator ($\prod$) will take a sequence of values and sum or multiply them.
Is there a general operator that will take a sequence of values and repeatedly apply a binary function to them?
Something, such that:
$\xi_{n=0}^5 S_n = f(S_5,\xi_{n=0}^4S_n)$
$\xi_{n=0}^5 S_n = f(S_5,f(S_4, \xi_{n=0}^3S_n))$
$...$
$\xi_{n=0}^5 S_n = f(S_5,f(S_4,f(S_3,f(S_2,f(S_1,f(S_0, I_f))))))$
Where $I_f$ is the identity value for the operation in question.
It seems I was looking for an iterated binary operation which is denoted by