← Complete problem index

PROJECT EULER · #0521

Smallest Prime Factor

Statement only · UnsolvedOriginal problem ↗

Let smpf(n) be the smallest prime factor of n.
smpf(91)=7 because 91=7×13 and smpf(45)=3 because 45=3×3×5.
Let S(n) be the sum of smpf(i) for 2in.
E.g. S(100)=1257.

Find S(1012)mod109.

Write-up coming later

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