There is something I cannot understand. I'm using array indexing and it works for determining the radius of the circles and to positioning the nodes. However it does not work as the node content.
\documentclass{standalone}
\usepackage{color}
\usepackage{tikz}
\usetikzlibrary{calc}
\begin{document}
\begin{tikzpicture}
\def\radi{{1,2,3,4}}
\foreach \x/\a [count=\n] in {0/15,1/345,2/345,3/345}
\draw[very thin, draw=red!50!white] (0,0) circle [radius={\radi[\x]}] node at (\a:{\radi[\x]}) {{\radi[\x]}};
\end{tikzpicture}
\end{document}


{\n}as label? – Red Sep 24 '13 at 09:17countoption of theforeachloop. – Claudio Fiandrino Sep 24 '13 at 09:36\pgfmathparse{...}then\pgfmathresult... – Paul Gaborit Sep 24 '13 at 09:37