#!/usr/bin/env python def f5 ( i ) : #*****************************************************************************80 # ## F5 is the iteration function for example 5. # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 13 May 2013 # # Author: # # John Burkardt # # Parameters: # # Input, integer I, the argument of the function. # # Output, integer VALUE, the value of the function. # value = ( ( 16383 * i + 1 ) % 65536 ) return value