A297105 Smallest square k > 1 such that iterating the map (k -> number of divisors(k)) n times yields a square on each iteration.
4, 36, 1587600, 296110298950956428271894663224760734752656000000
Offset: 0
Keywords
Examples
The smallest square larger than 1 is 4, so a(0) = 4. The first several squares larger than 1 are k = 4, 9, 16, 25, 36, ..., for which the number of divisors tau(k) is 3, 3, 5, 3, 9, ..., respectively; the first of these numbers of divisors that is a square is tau(36) = 9 = 3^2, so a(1) = 36. a(2) = 1587600 = 2^4 * 3^4 * 5^2 * 7^2, so tau(1587600) = (4+1)*(4+1)*(2+1)*(2+1) = 225 = 3^2 * 5^2, so tau(225) = (2+1)*(2+1) = 9 = 3^2. a(3) = 296110298950956428271894663224760734752656000000; tau(tau(tau(296110298950956428271894663224760734752656000000))) = tau(tau(300155625)) = tau(225) = 9 = 3^2.
Comments