OFFSET
1,3
COMMENTS
Fixed points k (for which a(k) = k) satisfy A003973(k) = 2^e * A003961(k) for some exponent e >= 0. Applying A003961 to such numbers gives the odd terms in A336702, of which there are likely to be just a single instance, its initial 1. (Clarified Nov 07 2021).
Conjecture: There are no other fixed points than a(1) = 1. If true, then there are no odd perfect numbers. This condition is equivalent to the condition that if A161942 has no fixed points larger than one, then there are no odd perfect numbers. This follows as whenever k is a fixed point, that is, a(k) = k, then we should also have A003961(a(k)) = A003961(A064989(sigma(A003961(k)))) = A161942(A003961(k)) = A003961(k). Note that A003961 is an injective and surjective mapping from natural numbers to odd numbers, A064989 is its (left) inverse, and composition A003961(A064989(n)) is equivalent to A000265(n).
From Antti Karttunen, Aug 05 2020: (Start)
For any hypothetical odd perfect number x, we would have A003973(k) = 2 * A003961(k), with k = A064989(x) and x = A003961(k). Thus we would have a(k) = A064989(sigma(A003961(k)) = A064989(sigma(x)) = A064989(2*x) = A064989(x) = k. On the other hand, A003973(k) = sigma(A003961(k)) < A003961(A003961(k)) [see A286385 for the reason why], so a necessary condition for this is that x should be one of the terms of A246282. (Clarified Dec 01 2020).
(End)
LINKS
FORMULA
Multiplicative with a(p^e) = A064989((q^(e+1)-1)/(q-1)), where q = nextPrime(p). - Antti Karttunen, Nov 05 2021
MATHEMATICA
f1[p_, e_] := NextPrime[p]^e; a1[1] = 1; a1[n_] := Times @@ f1 @@@ FactorInteger[n]; f2[2, e_] := 1; f2[p_, e_] := NextPrime[p, -1]^e; a2[1] = 1; a2[n_] := Times @@ f2 @@@ FactorInteger[n]; a[n_] := a2[DivisorSigma[1, a1[n]]]; Array[a, 100] (* Amiram Eldar, Nov 07 2021 *)
PROG
CROSSREFS
Cf. A000037, A000203, A000265, A000593, A003961, A003973, A064989, A161942, A162284, A246282, A286385, A326041, A326182, A336702 (numbers whose abundancy index is a power of 2).
Cf. A348736 [n - a(n)], A348738 [a(n) < n], A348739 [a(n) > n], A348750 [= A064989(a(A003961(n)))], A348940 [gcd(n,a(n))], A348941, A348942, A351456, A353767, A353790, A353794.
Cf. also A332223 for another conjugation of sigma.
KEYWORD
nonn,mult
AUTHOR
Antti Karttunen, Jun 16 2019
EXTENSIONS
Keyword:mult added by Antti Karttunen, Nov 05 2021
STATUS
approved