from sympy import divisors
from sympy.ntheory.factor_ import totient
from math import factorial
bound=10**15
f=lambda m,n,dList,pList,fList:sum(pList[i]*factorial(m*dList[i])//fList[i]**m for i in range(len(dList)))//(m*n)
r=0
n=1
while True:
dList=divisors(n)
pList=[totient(n//d) for d in dList]
fList=[factorial(d) for d in dList]
m=2
s=f(m,n,dList,pList,fList)
if s>bound:
break
while s <= bound:
r+=s
m+=1
s=f(m,n,dList,pList,fList)
n+=1
print(r)