I want to change the first number of the line numbering in my algorithm, but how is it done? This is my example:
\documentclass[12pt]{beamer}
\usepackage{amsmath, amsfonts, amssymb, amsthm}
\usepackage{algorithmic, algorithm}
\usepackage{float}
\renewcommand\thealgorithm{}
\begin{document}
\begin{frame}[t, fragile]
\frametitle{...}
\begin{algorithm}[H]
\caption{...}
\begin{algorithmic}[1]
\STATE ...
\end{algorithmic}
\end{algorithm}
\end{frame}
\end{document}
The first state should be numbered with 2 for example.

