Working on my answer to Better way of designing memory layout in tikz I've found that the distribution of a number of consecutive \bullet (or \cdot) is different if the number is even or odd. Space between two last elements in an even list is shorter. Why? How could it be corrected?
\documentclass{article}
\usepackage{pgffor}
\newcommand{\mydots}[1]{$\foreach\i in {1,...,#1}{\bullet}$}
\begin{document}
\foreach\i in {1,...,15}
{\noindent\mydots{\i}\\}
\end{document}


\bulletbeing a binary operator I think (\mathbin), but I don't know the rules for their spacing, so can't give details. – Torbjørn T. May 08 '18 at 10:05\mathop{\bullet}solves the problem. Could you write an answer? – Ignasi May 08 '18 at 10:26