| Up | Next | Prev | PrevTail | Tail |
Bernoulli numbers are provided by the unary operator Bernoulli. If n is a non-negative integer, the call Bernoulli(n) evaluates to the nth Bernoulli number; all of the odd Bernoulli numbers, except Bernoulli(1), are zero. Otherwise the result involves the original operator Bernoulli; on graphical interfaces this is rendered as Bn.
Euler numbers are computed by the unary operator Euler. If n is a non-negative integer, the call Euler(n) returns the nth Euler number; all of the odd Euler numbers are zero. Otherwise the result returned involves the original operator Euler; on graphical interfaces this is rendered as En.
Fibonacci numbers are provided by the unary operator Fibonacci, where Fibonacci(n) evaluates to the nth Fibonacci number; if n is an integer, this will be evaluated following the recursive deļ¬nition:

The recursion is, of course, optimised as a simple loop to avoid repeated computation of lower-order numbers. Otherwise the result returned involves the original operator fibonacci; on graphical interfaces this is rendered as Fn.
| Up | Next | Prev | PrevTail | Front |