Suppose we have a set $S$ with two elements, $$S=\{A,B\}$$ Now the subsets are $2^2$, I am going to make a new set and call it $S_1$, $$S_1=\{\{\},\{A\},\{B\},\{A,B\}\}$$ There are $2^4$ subsets for $S_1$ yet I am going to eliminate the empty set and re-define my $S_1$ as: $$S_{1_{new}}=\{\{A\},\{B\},\{A,B\}\}$$ for $S_{1_{new}}$ there are 8 subsets. I shall repeat the procedure $n$ times in similar manner. Now I am wondering how many A and B I will have in the set $n$-th.
Another question is that suppose my original set $S$ has N elements how will this be generalised?
The size of the power set of a set with $N$ members is $2^N$.
Thus, assuming the original set does not contain the empty set, the size of $S_n$ is simply
$$\#(S_n) = 2^{\#(S_{n-1})}-1$$
Because it is simply the power set of the previous set with the null set, a single element, removed.
That recurrence applies to the general case.