Is there software that can recognize the logical link between sequence numbers?
Example 1: $$\begin{array}{|l|c|c|c|c|c|c} \hline \text{sequence} & 2 & 6 & 12 & 20 & 30 & \cdots \\ \hline n & 1 & 2 & 3 & 4 & 5 & \cdots \\ \hline \end{array}$$ Here the $n$th term of the sequence is $n(n+1)$.
Example 2:
$$\begin{array}{|l|c|c|c|c|c|c|c} \hline \text{sequence} & 2 & 8 & 24 & 64 & 160 & 384 & \cdots \\ \hline n & 1 & 2 & 3 & 4 & 5 & 6 & \cdots \\ \hline \end{array}$$ Here the $n$th term of the sequence is $n 2^n$.
Thank you.
OEIS is excellent, the database is huge. If you don't have web access, you can also send an email. Results by an offline software are much more limited, but Mathematica has the FindSequenceFunction[] function. However, it doesn't seem to find your second example...