I am not sure I understand the question, but maybeThis allows you are looking for this. You can define a new tag form that addsto add multiple equation number, where the number can be set withnumbers via a command \MultiTag\multitag.
\documentclass[a4paper,12pt]{article} \usepackage[spanish]{babel} \usepackage[latin1]{inputenc} \usepackage{mathtools} \newcounter{iloop} \newcounter{imax} \newtagform\newcommand{Ignacio\MultiNum}{(}\edef\temp{}% \setcounter{iloop}{0}\loop% \stepcounter{iloop}% \ifnum\value{iloop}<\value{imax}% \stepcounter\edef\temp{\temp\number\value{equation}),(}\refstepcounter{equation}% \number\value\repeat% \edef\temp{\temp\number\value{equation}\repeat)}% \newcommand\refstepcounter{\MultiTagequation}[1]} \newcommand\multitag[1][1]{\setcounter{imax}{#1}}% \begin{document}\MultiNum% \usetagform\tag{Ignacio\temp}\MultiTag} \begin{3document}% Einstein \begin{equation}\label{eq:Einstein} E=mc^2 \multitag[3] \end{equation} Photon \begin{equation}\label{eq:Photon} E=h\nu \multitag[2] \end{equation} Thermo\MultiTagThermo \begin{2equation} E=TS \end{equation} Wrong \begin{equation}\label{eq:Wrong} E=TSE=mc^3 \end{equation} \eqref{eq:Wrong} is wrong, \eqref{eq:Einstein} is correct, and so is \eqref{eq:Photon}. \end{document} 
