The meaning of summation notation $ \Sigma $ follows as:
$$ \sum^{n}_{k=i}(\text{formula of }k) = \text{Let's sum a formula of }k\text{ when }k=i, i+1, i+2 \ldots n.$$
so for your question 1, j=i does not mean j=2, even if it is placed right after i=2.
Actually,
$$ \sum^{n}_{k=i}(\text{formula of }k)$$
can be written equivalently as(but don't use this notation if your lecture giver insists)
$$ \sum_{k \in \{i, i+1, i+2, ... n\}}(\text{formula of }k)$$
so an equal sign does not have the meaning you think.
So, for your question 2,
$$ \sum^{n}_{j=i}1 = \sum_{j \in \{i, i+1, i+2 ... n\}} 1 \\
= \text{sum of }(n - i + 1) \text{ } 1\text{'s} \\
= n - i + 1.$$
Hope my answer helps.
Double sum is just a shorthand notation to express this. The rule here is to work from inner sums towards the outer sums, while keeping the outer sum variables constant. Although, there are a few cases when this doesn't apply.
– Prasun Biswas Nov 11 '15 at 05:49