Metadata-Version: 2.1
Name: mod-nest-exp
Version: 1.0.1
Summary: An algorithm that computes modular nested exponentiation efficiently
Home-page: https://github.com/avivbrook/modular-nested-exponentiation
Author: Aviv Brook
Author-email: avbrook@ucsc.edu
License: UNKNOWN
Description: # modular-nested-exponentiation
        
        <table>
            <tr>
                <td>License</td>
                <td><img src='https://img.shields.io/pypi/l/mod-nest-exp.svg'></td>
                <td>Version</td>
                <td><img src='https://img.shields.io/pypi/v/mod-nest-exp.svg'></td>
            </tr>
            <tr>
                <td>Wheel</td>
                <td><img src='https://img.shields.io/pypi/wheel/mod-nest-exp.svg'></td>
                <td>Implementation</td>
                <td><img src='https://img.shields.io/pypi/implementation/mod-nest-exp.svg'></td>
            </tr>
            <tr>
                <td>Status</td>
                <td><img src='https://img.shields.io/pypi/status/mod-nest-exp.svg'></td>
                <td>Supported versions</td>
                <td><img src='https://img.shields.io/pypi/pyversions/mod-nest-exp.svg'></td>
            </tr>
            <tr>
                <td>Downloads</td>
                <td><img src='https://img.shields.io/pypi/dm/mod-nest-exp.svg'></td>
            </tr>
        </table>
        
        ## Modular nested exponentiation
        
        We present an algorithm that takes as input an arbitrarily long sequence of positive integers `a₁, a₂, a₃, ..., aₙ` and a positive integer `m` and computes `a₁^(a₂^(···^aₙ)) mod m` efficiently (that is, without computing the value of the nested exponent).
        
        Without this algorithm, this type of computation is unfeasible for modern computers even for short input sequences containing small integers.
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
