ALEA::KAOSN
Arguments: seed lambda long fn? [generic-function]
Generates a sequence of length long based on the logistical equation: yn = xn-1 * lambda * (1 - xn-1 )
where -lambda is a number or a list of parameters which define the 'turbulence' of the generated values. - seed is an initial value between zero and one; - fn is the degree of iteration of the logistical equation, if fn = n the sequence calculated will be the function com-posed of yn = y(yn-2 ); - long is the length of the list generated, which is equivalent to the number of iterations; The output of this module is a [[list]] of values for each iteration.