Depending on how much "non-sequential" your numbers are, and how much you need a quick & dirty solution instead of something with polish and automatism, you might get along with \addtocounter and some ad-hoc-ery involving the enumitem package:
\documentclass{article} \usepackage{enumitem} \begin{document} \begin{enumerate}[label=52.\arabic*,start=2] \item Answer % 52.2 \addtocounter{enumi}{6} \item Answer % 52.9 \end{enumerate} \begin{enumerate}[label=53.\arabic*,start=13] \item Answer % 53.13 \end{enumerate} \end{document}
With a bit more work, you could make the page number (52, 53) into a counter of its own and wrap it all into a re-useable environment definition, but I think this gives you the idea of it all.