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”).

A339965
a(n) = sigma(n) / gcd(sigma(n),n+1).
3
1, 1, 1, 7, 1, 12, 1, 5, 13, 18, 1, 28, 1, 8, 3, 31, 1, 39, 1, 2, 16, 36, 1, 12, 31, 14, 10, 56, 1, 72, 1, 21, 24, 54, 4, 91, 1, 20, 7, 90, 1, 96, 1, 28, 39, 72, 1, 124, 57, 31, 18, 98, 1, 24, 9, 40, 40, 90, 1, 168, 1, 32, 13, 127, 14, 144, 1, 42, 48, 144, 1, 195, 1, 38, 31, 20, 16, 168, 1, 62, 121, 126, 1, 224, 54, 44
OFFSET
1,4
FORMULA
a(n) = A000203(n) / A339964(n).
a(n) = numerator(sigma(n)/(n+1)). - Michel Marcus, Jan 07 2023
MATHEMATICA
Table[DivisorSigma[1, n]/GCD[DivisorSigma[1, n], n + 1], {n, 80}] (* Wesley Ivan Hurt, Oct 10 2021 *)
PROG
(PARI) A339965(n) = sigma(n)/(gcd(sigma(n), n+1));
CROSSREFS
Cf. A000203, A339964, A339966 (denominators).
Cf. A017665.
Cf. also A160595.
Sequence in context: A165949 A322565 A343227 * A364094 A347132 A349173
KEYWORD
nonn,frac,easy
AUTHOR
Antti Karttunen, Dec 25 2020
STATUS
approved