This website is a semi-functional mirror of the original Project Euler. More information is available on GitHub.
Dissonant Numbers
Problem 515
Published on 10 May 2015 at 07:00 am [Server Time]
Let d(p,n,0) be the multiplicative inverse of n modulo prime p, defined as n × d(p,n,0) = 1 mod p.
Let d(p,n,k) = $\sum_{i=1}^n$d(p,i,k−1) for k ≥ 1.
Let D(a,b,k) = $\sum$(d(p,p-1,k) mod p) for all primes a ≤ p < a + b.
You are given:
- D(101,1,10) = 45
- D(103,102,102) = 8334
- D(106,103,103) = 38162302
Find D(109,105,105).
Go to back to Problems