Definitions and Notation

Theory

A sequence is a function whose domain is the set of positive integers. Each input nn produces a term ana_n, and the terms are written in order. A sequence may be finite or infinite.

Beginner Pattern (Use for Every Problem)

  • Identify the starting value of nn
  • Substitute n=1,2,3,n = 1, 2, 3, \dots
  • Write the terms in order

Exercises

Exercise 1
Question

Write the first four terms of the infinite sequence

{13n}n=1.\left\{ \frac{1}{3n} \right\}_{n=1}^{\infty}.
Show solution ↓
Solution

Substitute n=1,2,3,4n=1,2,3,4:

13,  16,  19,  112.\frac13,\; \frac16,\; \frac19,\; \frac1{12}.
Exercise 2
Question

Write the first four terms of the sequence

{sin ⁣(nπ2)cos ⁣(nπ2)}n=0.\left\{ \sin\!\left(\frac{n\pi}{2}\right) - \cos\!\left(\frac{n\pi}{2}\right) \right\}_{n=0}^{\infty}.
Show solution ↓
Solution

Substitute n=0,1,2,3n=0,1,2,3:

1,  1,  1,  1.-1,\; 1,\; 1,\; -1.
Exercise 3
Question

Write the first ten terms of the Fibonacci sequence {Fn}\{F_n\} defined by

Fn+1=Fn+Fn1,n2,F_{n+1} = F_n + F_{n-1}, \quad n \ge 2,

where F1=1F_1 = 1 and F2=1F_2 = 1.

Show solution ↓
Solution

Starting from F1=1F_1=1, F2=1F_2=1:

1,  1,  2,  3,  5,  8,  13,  21,  34,  55.1,\; 1,\; 2,\; 3,\; 5,\; 8,\; 13,\; 21,\; 34,\; 55.
Exercise 4
Question

Find the nnth term (bracket notation) of the sequence

2,  2,  2,  2,  2,\; -2,\; 2,\; -2,\; \dots
Show solution ↓
Solution

The signs alternate and the magnitude is constant:

{2(1)n+1}n=1.\left\{ 2(-1)^{\,n+1} \right\}_{n=1}^{\infty}.
Exercise 5
Question

Find the nnth term (bracket notation) of the sequence

12,  43,  94,  165,  \frac12,\; \frac43,\; \frac94,\; \frac{16}{5},\; \dots
Show solution ↓
Solution

The numerator is n2n^2 and the denominator is n+1n+1:

{n2n+1}n=1.\left\{ \frac{n^2}{n+1} \right\}_{n=1}^{\infty}.