I am working with set of differential equations, where I need repeated iterations. I need to number the steps as double or triple index /suffixes. I would like to know how to do it.
If you are actually asking about the notation you need to use that is double square brackets.
For example if you have a 2 dimensional list named K, the (i,j)-th element will be K[[i,j]]. K[[i]] gives the whole i-th row (same as K[[i,All]]), while K[[All,j]] gives the whole j-th column.
See more here: http://reference.wolfram.com/mathematica/ref/Part.html
If what you are asking is something else, please clarify it a little bit.