| |
- fibonacci(n)
- Returns the nth Fibonacci number, for `n' a non-negative integer
- gcd(a, b)
- Returns the greatest common divisor of the two arguments.
Example: gcd(9,8)=1, since 9 and 8 are relatively prime, but
gcd(24,30)=6, since 6 divides both 24 and 30.
- hypo(a, b)
- Returns the length of the hypotenuse of a right triangle with the given legs
- triangular(max)
- Generates a triangular list of lists up to the given max
|