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!)
A348505 a(n) = usigma(n) / gcd(sigma(n), usigma(n)), where sigma is the sum of divisors function, A000203, and usigma is the unitary sigma, A034448. 4
1, 1, 1, 5, 1, 1, 1, 3, 10, 1, 1, 5, 1, 1, 1, 17, 1, 10, 1, 5, 1, 1, 1, 3, 26, 1, 7, 5, 1, 1, 1, 11, 1, 1, 1, 50, 1, 1, 1, 3, 1, 1, 1, 5, 10, 1, 1, 17, 50, 26, 1, 5, 1, 7, 1, 3, 1, 1, 1, 5, 1, 1, 10, 65, 1, 1, 1, 5, 1, 1, 1, 6, 1, 1, 26, 5, 1, 1, 1, 17, 82, 1, 1, 5, 1, 1, 1, 3, 1, 10, 1, 5, 1, 1, 1, 11, 1, 50, 10, 130 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
This is not multiplicative. The first point where a(m*n) = a(m)*a(n) does not hold for coprime m and n is 72 = 8*9, where a(72) = 6 != 3*10 = a(8) * a(9).
LINKS
FORMULA
a(n) = A034448(n) / A348503(n) = A034448(n) / gcd(A000203(n), A034448(n)).
MATHEMATICA
f1[p_, e_] := p^e + 1; f2[p_, e_] := (p^(e + 1) - 1)/(p - 1); a[1] = 1; a[n_] := (usigma = Times @@ f1 @@@ (fct = FactorInteger[n])) / GCD[usigma, Times @@ f2 @@@ fct]; Array[a, 100] (* Amiram Eldar, Oct 29 2021 *)
PROG
(PARI)
A034448(n) = { my(f=factorint(n)); prod(k=1, #f~, 1+(f[k, 1]^f[k, 2])); }; \\ After code in A034448
A348505(n) = { my(u=A034448(n)); (u/gcd(u, sigma(n))); };
CROSSREFS
Cf. A000203, A005117, A034448, A048146, A063880, A348503, A348504, A348506 (positions of ones).
Cf. also A344697, A348049.
Sequence in context: A026518 A362394 A345949 * A051008 A304042 A109768
KEYWORD
nonn
AUTHOR
Antti Karttunen, Oct 29 2021
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 27 23:22 EDT 2024. Contains 372020 sequences. (Running on oeis4.)