A288636 Height of power-tower factorization of n. Row lengths of A278028.
0, 1, 1, 2, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1
Offset: 1
Keywords
Links
- Michael De Vlieger, Table of n, a(n) for n = 1..65536
Programs
-
Mathematica
a[n_] := If[n == 1, 0, 1+a[GCD @@ FactorInteger[n][[All, 2]]]]; Array[a,100]
Comments