Anzeige
Calculate a Sequence
Calculator for finite sequences. A sequence is a numbered list of values, produced by the calculation of a formula. As running variable, which is increased by 1 in each step, i is used. Only this variable may occur in the sequence term. The basic arithmetic operations + - * / are allowed, as well as the power function, like pow(2#i) for 2i. Further allowed functions are sin(), cos(), tan(), asin(), acos(), atan(), log() for the natural logarithm and fac() for the factorial. Also, the constants e and pi can be used. The output of the sequence is displayed as table.
Examples:
- 2*i-1 returns every odd number.
- With m=1 and n=10, pow(i#2) (syntax for i²) gives the quadratic sequence 1, 4, 9, 16, 25, 36, 49, 64, 81, 100
Anzeige