A336363 Number of iterations of map k -> k*sigma(p^e)/p^e needed to reach a power of 2, where p is the largest prime factor of k and e is its exponent, when starting from k = n. a(n) = -1 if number of the form 2^k is never reached.
0, 0, 1, 0, 2, 1, 1, 0, 3, 2, 2, 1, 2, 1, 4, 0, 4, 3, 3, 2, 2, 2, 2, 1, 2, 2, 3, 1, 5, 4, 1, 0, 4, 4, 3, 3, 4, 3, 3, 2, 3, 2, 3, 2, 4, 2, 2, 1, 6, 2, 4, 2, 4, 3, 5, 1, 5, 5, 5, 4, 2, 1, 4, 0, 4, 4, 5, 4, 4, 3, 4, 3, 5, 4, 3, 3, 3, 3, 3, 2, 6, 3, 3, 2, 5, 3, 5, 2, 5, 4, 7, 2, 2, 2, 3, 1, 7, 6, 4, 2, 5, 4, 3, 2, 5
Offset: 1
Keywords
Examples
For n = 15 = 3*5, we obtain the following path, when starting from k = n, and when we always replace the maximal power of the largest prime factor, p^e of k with sigma(p^e) = (1 + p + p^2 + ... + p^e) in the prime factorization k: 3^1 * 5^1 -> 3*(5+1) = 18 = 2^1 * 3^2 -> 2 * (1+3+9) = 26 = 2 * 13 -> 2 * (13+1) = 28 = 2^2 * 7 -> 4*(7+1) = 2^5, thus it took four iterations to reach a power of two, and a(15) = 4.
Links
- Antti Karttunen, Table of n, a(n) for n = 1..65537
Comments