login
A389080
a(n) = gcd(sigma(n), A048250(n)), where sigma is the sum of divisors and A048250 is the sum of squarefree divisors.
3
1, 3, 4, 1, 6, 12, 8, 3, 1, 18, 12, 4, 14, 24, 24, 1, 18, 3, 20, 6, 32, 36, 24, 12, 1, 42, 4, 8, 30, 72, 32, 3, 48, 54, 48, 1, 38, 60, 56, 18, 42, 96, 44, 12, 6, 72, 48, 4, 1, 3, 72, 14, 54, 12, 72, 24, 80, 90, 60, 24, 62, 96, 8, 1, 84, 144, 68, 18, 96, 144, 72, 3, 74, 114, 4, 20, 96, 168, 80, 6, 1, 126, 84, 32, 108
OFFSET
1,2
COMMENTS
First differs from A348503 at n = 72, from A344695 at n = 108, and from A367991 at n = 196.
Not multiplicative: a(4) = 1, a(49) = 1, but a(4*49) = a(196) = 3 <> 1*1.
FORMULA
a(n) = gcd(A000203(n), A048250(n)).
a(n) = A000203(n) / A389087(n).
a(n) = A048250(n) / A389089(n).
MATHEMATICA
a[n_]:=GCD[DivisorSigma[1, n], Total[Select[Divisors[n], SquareFreeQ]]]; Array[a, 85] (* James C. McMahon, Oct 07 2025 *)
PROG
(PARI)
A048250(n) = factorback(apply(p -> p+1, factor(n)[, 1]));
A389080(n) = gcd(sigma(n), A048250(n));
KEYWORD
nonn
AUTHOR
Antti Karttunen, Oct 03 2025
STATUS
approved