4

Question:

The first three terms of a sequence are given.

$2, 4, 8...$

Write two different rules for continuing the sequence. Give the next two terms for each rule.

Answer:

I have found one rule which satisfies this sequence and could not think of another one.

$1)$ The next term is double the previous term:

$2, 4, 8, 16, 32...$

I'm not entirely what another different rule could be... Thank you.

Zain Patel
  • 16,802
itshanks
  • 532
  • 1
    hint: you need at least 3 points to determine the parameters of a parabola. – John Joy Jul 24 '16 at 12:46
  • 1
    http://math.stackexchange.com/questions/1790642/general-formula-for-the-1-5-19-65-211-sequence – Jack D'Aurizio Jul 24 '16 at 13:15
  • 2
    The next term is clearly $3$, as the number of characters in the word how: the phrase Do they consider how to continue this sequence? is associated with the sequence $2-4-8-3-2-8-4-8$. – Jack D'Aurizio Jul 24 '16 at 13:18
  • 1
    Well, one possible sequence is the number of pieces which a circle is divided by n points on its circumference connected by chords, with no three lines intersecting at one point. The sequence is(starting from n=2): 2,4,8,16,31,.. It follows $\frac{1}{24}(n^4-6n^3+23n^2-18n+24)$. You could also use Lagrange interpolation to calculate a parabola that fits any given points, and add an extra point to change the parabola – Ariana Jul 24 '16 at 13:33

5 Answers5

6

$f(n) = n^2 - n + 2$ gives $f(1) = 2, f(2) = 4, f(3) = 8, f(4) = 14, f(5) = 22$


You have $3$ terms so you can construct a $2$nd degree polynomial passing through those three points. There are two approaches to this, write $f(n) = an^2 + bn + c$ and then plug in $(1, 2), (2, 4), (3, 8)$ and find the coefficients which isn't too bad to do. On the other hand, you can use Lagrange Interpolation for a quick way to compute the polynomial.

Zain Patel
  • 16,802
3

One idea is to look at the differences between consecutive terms. $4-2=2$ and $8-4=4$, an increase of $2$, so we could try making these differences increase by $2$ each time. The next difference would have to be $4+2=6$, and the one after that would then be $6+2=8$; the corresponding terms of the sequence would be $8+6=14$ and $14+8=22$. Can you work out a formula for the $n$-th term if this rule is followed? The following table may help you do this.

$$\begin{array}{rcc} n:&1&2&3&4&5\\ x_n:&2&4&8&14&22\\ n^2:&1&4&9&16&25\\ n^2-x_n:&-1&0&1&2&3 \end{array}$$

Brian M. Scott
  • 616,228
3

Here's a family of uncountably many sequences:

$f_\epsilon(n) = \lfloor (2+\epsilon)^n \rfloor$ with $0\le\epsilon<\sqrt[3]{9}-2$

$\lfloor x\rfloor$ denotes the largest integer not larger than $x$.

Here's another interesting sequence:

$f(n)$ is the sum of the digits of the $(n+4)$-th prime.

Or, $f(n)$ is the maximal number of pieces of a cake achievable with $n$ cuts.

Of course there's a ton of other possibilities.

celtschk
  • 43,384
3

"2, 4, 8" is not a "sequence", it is the beginning of one- and, given any first three values, there are an infinite number of sequences that start with those three values.

user247327
  • 18,710
  • For example the sequence 2,4,8,10,10,10,10... (all 10's after the 3rd term) and the sequence 2,4,8,-1,-1,-1,-1... Why should a sequence have a "nice" or a predictable formula? – MasB Jul 24 '16 at 13:17
2

Another possible rule is that the sequence is the sequence of even numbers not divisible by $3$. So $f(n) = 2n$ where $n \neq 0 \pmod 3$ that gives $f(n) = 2n$ where $n = 1, 2, 4, 5, 7, 8, \ldots$ this gives $f(1) = 2, f(2) = 4, f(4) = 8, f(5) = 10, f(7) = 14, f(8) = 16$.

Point being, you can think up all sorts of contrived rules that fit the first $k$ terms of a given sequence, i.e: listing the first few terms of a sequence doesn't uniquely identify the sequence.

Zain Patel
  • 16,802