Can you guess a general generating rule for these 7 sequences ?
2 3 4
2 3 4 3 4 4
2 3 4 3 5 4 5 4 5 6
2 3 4 3 5 4 6 5 4 6 5 6 5 6 6
2 3 4 3 5 6 4 7 5 4 6 5 7 6 5 7 6 7 6 7 7
2 3 4 3 5 6 4 7 5 8 4 6 5 7 6 8 5 7 6 8 7 6 8 7 8 7 8 8
2 3 4 3 5 6 4 7 5 8 4 6 9 5 7 8 6 5 9 7 6 8 7 9 6 8 7 9 8 7 9 8 9 8 9 9
(I mean a general formula for the i-th element of the K-th sequence)
There is a trivial way to continue any sequence in a logical way.
You build differences of neighboring numbers until there is a constant sequence:
General rule
$a_0^{(0)}, a_1^{(0)}, a_2^{(0)}, a_3^{(0)}, \dots, a_n^{(0)}$ is your sequence.
$a_i^{(1)} := a_{i+1}^{(0)} - a_i^{(0)}$
$\vdots$
$a_i^{(j)} := a_{i+1}^{(j-1)} - a_i^{(j-1)}$ for $i \in \{0, \dots, n-j-1\}$
As there is only $i=0$ for $j=n-1$ you can assume the $(n-1)$th series to be constant and continue all other series until you're at the series you were originally interested in.
About this method
I've heard that this is calculating the discrete derivate and it works for every function that is generated by a polynomial. But I'm not sure about that.
I am aware that this doesn't work like people expect (e.g. for the series that uses language like:
read like "one one" which gives the second row, "two ones", "one two, one one"...)
but it is a logical way to continue any sequence. When you want me to continue a sequence in a logical way but not with this method, you should provide more details about the sequence. However, when you come down to the last generated sequence with my method and have to assume that this one is constant, it's probably not the sequence that you should find.
More interesting examples:
Fibonacci-sequence
Squares:
You might also be interested in
http://oeis.org/
It is an "On-Line Encyclopedia of Integer Sequences" with lots of information about the sequences.