Is there a language agnostic algorithm to name tuples?
Specifically, I want the following function:
1 => Single
2 => Double
3 => Triple
4 => Quadruple
...
10 => Decuple
...
100 => Centuple
First of all, is this human-language independent? For example, will that be understood in Spain and Russia?
Secondly, what is the most efficient way to generate this list?
Edit
Just to clarify:
This is not for Tuples in the programming sense, but for a tournament system: Single-elimination, Double-elimination, and etc.
I can do translations, I'm just wondering if there was an algorithm that would lend itself well to translations.