I have just made an account to ask this question, since nobody has been able to clear up my confusion as of yet. I am a high school student so if I am using incorrect terminology or notation I do apologize for any confusion that may occur.
Say that one were to roll two fair, 6 sided dice, such that each number 1-6 has an equal chance of appearing. After the first roll, the sum of the presenting faces is recorded on a table as 'N', the 1st term in a sequence. To continue the sequence, the dice are rolled N amount of times. There are two possibilities during this 'rolling period:'
If during this rolling period a sum of N appears before the final roll, the remaining rolls are discarded and the number N is recorded as the next term in the sequence.
If during this rolling period a sum of N does not appear at any time, the sum of the faces on the Nth roll are recorded as the next term in the sequence.
I have two questions here about the resulting sequence from this procedure.
1: If the sequence is continued to the 10th term, what is the probability that the sequence consists of all 7s?
2: Now assume that N was determined to be 7, and is not included in the resulting sequence. The rest of the procedure is unchanged. If the sequence is continued infinitely, and each term is placed into a bar graph recording the prevalence of each possible sum, would the graph present a standard bellcurve?
I came up with this situation and both questions while sitting in a Adv. Algebra 2/Trig class. I have solved the first question (I think), however I am both unable to answer the second question and very curious about the answer. If anybody wants to take a crack I'd be interested in seeing how this situation is approached. If anything is unclear or confusing let me know so that I can clarify.

In a single roll, the probability of rolling $N$ is $p_N^{\,}=\frac{6-|N-7|}{36}$.
The probability of rolling a number which is not $N$ is $1-p_N^{\,}$.
The probability of $N$ times rolling a number which is not $N$ is $\left(1-p_N^{\,}\right)^N$.
The probability of rolling $N$ in up to $N$ attempts is $1-\left(1-p_N^{\,}\right)^N$.
The probability of rolling $N$ initially and again in up to $N$ following attempts is $p_N^{\,}\left(1-\left(1-p_N^{\,}\right)^N\right)$.
The probability of initially rolling some other number (let's say $M$ but we will have to sum over these) then failing to hit $M$ in the next $M$ rolls, with the final roll being $N$, is $p_M^{\,} (1-p_M^{\,})^{M-1}p_N^{\,}$
The probability of ending up with $N$ is the sum of these last two i.e. initially rolling some other number (let's say $M$ but we will have to sum over these) then failing to hit $M$ in the next $M$ rolls, with the final roll being $N$ is $$p_N^{\,}\left(1-\left(1-p_N^{\,}\right)^N\right) +\sum\limits_{M\not = N}p_M^{\,} (1-p_M^{\,})^{M-1}p_N^{\,}$$
So in R the probabilities are (exact up to rounding)
looking like
much the same as CoveredInChocolate's simulation