I'm trying to append items to an empty list in for cycle:
pointList = {};
For[n = 1, n <= 10, n++, Append[pointList, {n, Sum[(-1)^(i + 1) * Binomial[n, i] * (n - i)! / n!, {i, 1, n}]}]];
But the pointList after the for loop is empty. What am I doing wrong? :(