eulerbooks/notebooks/problem0097.ipynb

68 lines
1.5 KiB
Plaintext

{
"cells": [
{
"cell_type": "markdown",
"id": "abec1126",
"metadata": {},
"source": [
"# [Large Non-Mersenne Prime](https://projecteuler.net/problem=97)\n",
"\n",
"We'll use modular exponentiation - see [problem 48](https://projecteuler.net/problem=48) for further explanation."
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "068f4155",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"8739992577"
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"modulus = 10^10\n",
"(28433 * pow(2, 7830457, modulus) + 1) % modulus"
]
},
{
"cell_type": "markdown",
"id": "0454e1f8",
"metadata": {},
"source": [
"#### Copyright (C) 2025 filifa\n",
"\n",
"This work is licensed under the [Creative Commons Attribution-ShareAlike 4.0 International license](https://creativecommons.org/licenses/by-sa/4.0/) and the [BSD Zero Clause license](https://spdx.org/licenses/0BSD.html)."
]
}
],
"metadata": {
"kernelspec": {
"display_name": "SageMath 9.5",
"language": "sage",
"name": "sagemath"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.2"
}
},
"nbformat": 4,
"nbformat_minor": 5
}