P717
projecteuler.net

Summation of a Modular Formula

ℹ️Published on Saturday, 23rd May 2020, 02:00 pm; Solved by 551;
Difficulty rating: 25%

For an odd prime $p$, define $f(p) = \left\lfloor\frac{2^{(2^p)} }{p}\right\rfloor\bmod{2^p}$
For example, when $p=3$, $\lfloor 2^8/3\rfloor = 85 \equiv 5 \pmod 8$ and so $f(3) = 5$.

Further define $g(p) = f(p)\bmod p$. You are given $g(31) = 17$.

Now define $G(N)$ to be the summation of $g(p)$ for all odd primes less than $N$.
You are given $G(100) = 474$ and $G(10^4) = 2819236$.

Find $G(10^7)$.



Soluzione

Last modified: May 01, 2025. Website built with Franklin.jl and the lovely Julia programming language.