OFFSET
1,1
COMMENTS
The least instances for 4/3, 5/3, 7/3, 8/3, 10/3 and 11/3 are: 4, 20, 14, 672, 3360, 36960.
Then candidates for 13/3 and 14/3 are 54269201896764616671660406473798293913600000 and 23101697828019582727957348094429256309828763084415991060514234912131560924774400000000.
MATHEMATICA
Select[Range[10^5], Denominator[#/(# DivisorSum[#, LiouvilleLambda[#]/# &])] == 3 &] (* Michael De Vlieger, Dec 29 2017 *)
PROG
(PARI) rhope(p, e) = my(s=1); for(i=1, e, s=s*p + (-1)^i); s;
rho(n) = my(f=factor(n)); prod(i=1, #f~, rhope(f[i, 1], f[i, 2]));
isok(n) = denominator(n/rho(n))==3;
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Marcus, Dec 29 2017
EXTENSIONS
a(33)-a(35) from Jinyuan Wang, Feb 10 2020
STATUS
approved