OFFSET
1,3
COMMENTS
Some other values: a(15)=298, a(19)=97.
a(12) > 8*10^10. - Giovanni Resta, May 07 2017
EXAMPLE
n=6: sigma(2) + sigma(3) + ... + sigma(7) = 3 + 4 + 7 + 6 + 12 + 8 = 40 = sigma(2 + 3 + ... + 7) = sigma(27) = 1 + 3 + 9 + 27 = 40; quotient = 1.
MATHEMATICA
g[x_, k_] := Apply[Plus, Table[DivisorSigma[1, x+j], {j, 0, k-1}]]/ DivisorSigma[1, Apply[Plus, Table[x+j, {j, 0, k-1}]]]; Table[x=1; While[!IntegerQ[g[x, n]], x++]; x, {n, 1, 6}]
CROSSREFS
KEYWORD
hard,nonn,more
AUTHOR
Labos Elemer, Feb 17 2004
EXTENSIONS
a(7)-a(11) from Giovanni Resta, May 07 2017
STATUS
approved
