← Complete problem index

PROJECT EULER · #0485

Maximum Number of Divisors

Statement only · SolvedOriginal problem ↗

Let d(n) be the number of divisors of n.
Let M(n,k) be the maximum value of d(j) for njn+k1.
Let S(u,k) be the sum of M(n,k) for 1nuk+1.

You are given that S(1000,10)=17176.

Find S(100000000,100000).

Write-up coming later

The complete problem is available here. An approach, code, and answer will be added later.