There's not a nice simple formula for what you want. Written out algebraically it's a polynomial of order 10.
1601 = 100 (x^10 + x^9 + ... + x) where x is the interest rate
Put the RHS of the formula below into say cell C6 and then play with the value in C5. (cells chosen at random).
The value in C5 is the interest rate you're looking for and the value in C6 will be 1601 when you put the right value (~ 1.084) into C5.
1601 = 100*(C5+POWER(C5,2)+POWER(C5,3)+ POWER(C5,4)+ POWER(C5,5)+ POWER(C5,6)+ POWER(C5,7)+ POWER(C5,8)+ POWER(C5,9)+ POWER(C5,10))
There may be a built in financial function in Excel that hides this complexity.