OFFSET
1,6
COMMENTS
Ratio A332994(n) / sigma(n) tells how large proportion of the divisor sum we obtain if we sum just those divisors of n that can be obtained by repeatedly dividing a single instance of the largest prime divisor out of previous such divisor (when starting from n, which is included in the sum), up to and including the terminal 1. Pair a(n) / A348989(n) shows the ratio in the lowest terms: 1/1, 1/1, 1/1, 1/1, 1/1, 3/4, 1/1, 1/1, 1/1, 13/18, 1/1, 19/28, 1/1, 17/24, 19/24, 1/1, 1/1, 9/13, 1/1, 9/14, 25/32, 25/36, 1/1, 13/20, 1/1, 29/42, 1/1, 5/8, 1/1, 13/24, 1/1, etc. The ratio is 1 for all powers of primes (A000961).
MATHEMATICA
f[n_] := n/FactorInteger[n][[-1, 1]]; g[1] = 1; g[n_] := g[n] = n + g[f[n]]; a[n_] := Numerator[g[n]/DivisorSigma[1, n]]; Array[a, 100] (* Amiram Eldar, Nov 06 2021 *)
PROG
CROSSREFS
KEYWORD
nonn,frac
AUTHOR
Antti Karttunen, Nov 06 2021
STATUS
approved