recognize the sequence numbers?

671 Views Asked by At

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.

3

There are 3 best solutions below

1
On BEST ANSWER

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...

1
On

Your Second Sequence has error with 264 instead of 384.

OEIS is the best I know of:

http://oeis.org/search?q=2%2C8%2C24%2C64%2C160&sort=&language=english&go=Search

is very helpful to search sequences.

There might not be such offline softwares.

At least I don't know one.

0
On