I need to create counters with names like mycounter1, mycounter2,... Basically this should be a counter-valued data array. The code like
\newcounter{index}
\newcounter{\csname mycounter\the\value{index}\endcsname}
does not work. It seems that it is impossible to use \csname...\endcsname for counter names. Using \expandafter with different variants also does not help. Is there a way to resolve this problem?
