|   |   | 
| Calculator Function RefrenceFunction Reference >Calculator Function Reference >Lists>SequenceSequenceThe sequence function, seq(), will generate a sequence as a list with the given inputs. The function works as follows.
	seq(f(x), x, a, b)
Where f(x) is an equation, x is a variable. a and b makes an inverval where x 
will start at a and incriment through every integer until x reaches b. 
	seq(x^2,x,1,4)={1,4,9,16}
	 seq(b/2,b,1,4)={0.5,1,1.5,2} |