I'll start with a simple, minimal non-working example:
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\foreach \x/\y in {1/20,2/18,...,10/2}
\node at (\x,0) {\y};
\end{tikzicture}
\end{document}
The point, as you probably understand from the example, is to iterate over two variables at the same time that change by the same amount for each run, without having to write out all the x/y pairs explicitly. Had this worked, the expected output would be

but the compilation halts with an Illegal unit of measure ... error. I know the manual doesn't say anything about it, so I'm kind of expecting the answer to simply be "no, not possible". Am I missing something obvious, or is this something that TikZ can't do?
(By the way, I haven't come across a situation where I've needed this, it's just something that I came to wonder about. And I could do the loop with something else, e.g., Lua, anyway.)
lualatex, anyways. – Torbjørn T. Dec 08 '11 at 17:49\foreach \x in {1,2,...,10-1}{ \node at (\x,0) {\x};}. I am not sure about the cause of it yet there must be a way which also I don't know now,to escape from it . – percusse Dec 08 '11 at 17:53