login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A336849 a(n) = A003961(n) / gcd(A003961(n), sigma(A003961(n))), where A003961 is the prime shift towards larger primes. 14
1, 3, 5, 9, 7, 5, 11, 27, 25, 21, 13, 15, 17, 11, 35, 81, 19, 75, 23, 63, 55, 39, 29, 9, 49, 17, 125, 33, 31, 35, 37, 243, 65, 57, 77, 225, 41, 23, 85, 189, 43, 55, 47, 9, 175, 29, 53, 135, 121, 49, 19, 17, 59, 125, 13, 99, 115, 93, 61, 105, 67, 111, 275, 729, 119, 65, 71, 171, 29, 77, 73, 135, 79, 41, 245, 69, 143 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
If there are no more 1's in this sequence after the initial one, then there are no odd terms of A007691 (multiply perfect numbers) larger than one.
Denominator of the ratio A003973(n) / A003961(n), also denominator of the ratio (A341528(n)/A341529(n)) / (n / sigma(n)). - Antti Karttunen, Feb 16 2021
LINKS
FORMULA
a(n) = A003961(n) / A336850(n) = A003961(n) / gcd(A003961(n), A003973(n)).
a(n) = A017666(A003961(n)).
MATHEMATICA
f[p_, e_] := NextPrime[p]^e; g[1] = 1; g[n_] := Times @@ f @@@ FactorInteger[n]; a[n_] := (gn = g[n])/GCD[gn, DivisorSigma[1, gn]]; Array[a, 100] (* Amiram Eldar, Feb 17 2021 *)
PROG
(PARI)
A003961(n) = { my(f = factor(n)); for(i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); };
A336849(n) = { my(u=A003961(n)); (u/gcd(u, sigma(u))); };
\\ Or alternatively as:
A336849(n) = { my(u=A003961(n)); denominator(sigma(u)/u); };
CROSSREFS
Cf. A341525 (numerators).
Sequence in context: A340593 A021282 A016613 * A348994 A079427 A168271
KEYWORD
nonn,frac
AUTHOR
Antti Karttunen, Aug 06 2020
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)