login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A335417
a(n) = denominator of Sum_{k=2..A335138(n)} abs(A309229(n, k))/k.
1
6, 15, 20, 15, 4, 35, 360, 630, 420, 1386, 280, 5005, 280, 1287, 3080, 3465, 2520, 770, 27720, 9009, 5720, 16380, 360360, 10010, 360360, 3465, 40040, 25740, 360360, 323323, 1750320, 765765, 123760, 3423420, 720720, 4849845, 360360, 45045
OFFSET
1,1
MATHEMATICA
nn = 41; f[n_] := n; h[n_] := DivisorSum[n, MoebiusMu[#] # &]; A = Accumulate[Table[Table[h[GCD[n, k]], {k, 1, nn}], {n, 1, nn}]]; B = -Abs[A]; B[[All, 1]] = Table[f[n], {n, 1, nn}]; b = 1 + Total[Sign[1 + Sign[Accumulate[Transpose[B]]]]]; d = Table[Sum[Abs[A[[n, k]]]/k, {k, 2, b[[n]]}], {n, 1, nn}]; Denominator[d]
CROSSREFS
Cf. A309229, A335138. See A335416 for numerators.
Sequence in context: A002599 A001484 A217480 * A173680 A230209 A277951
KEYWORD
nonn,frac
AUTHOR
Mats Granvik, Jun 09 2020
STATUS
approved