A366388 The number of edges minus the number of leafs in the rooted tree with Matula-Goebel number n.
0, 0, 1, 0, 2, 1, 1, 0, 2, 2, 3, 1, 2, 1, 3, 0, 2, 2, 1, 2, 2, 3, 3, 1, 4, 2, 3, 1, 3, 3, 4, 0, 4, 2, 3, 2, 2, 1, 3, 2, 3, 2, 2, 3, 4, 3, 4, 1, 2, 4, 3, 2, 1, 3, 5, 1, 2, 3, 3, 3, 3, 4, 3, 0, 4, 4, 2, 2, 4, 3, 3, 2, 3, 2, 5, 1, 4, 3, 4, 2, 4, 3, 4, 2, 4, 2, 4, 3, 2, 4, 3, 3, 5, 4, 3, 1, 5, 2, 5, 4, 3, 3, 4, 2, 4
Offset: 1
Keywords
Examples
See illustrations in A061773.
Links
Crossrefs
Programs
-
Mathematica
Array[-1 + Length@ NestWhileList[PrimePi[#2]*#1/#2 & @@ {#, FactorInteger[#][[-1, 1]]} &, #, ! IntegerQ@ Log2[#] &] &, 105] (* Michael De Vlieger, Oct 23 2023 *)
-
PARI
A366388(n) = if(n<=2, 0, if(isprime(n), 1+A366388(primepi(n)), my(f=factor(n)); (apply(A366388, f[, 1])~ * f[, 2])));
-
PARI
A006530(n) = if(1==n, n, my(f=factor(n)); f[#f~, 1]); A366385(n) = { my(gpf=A006530(n)); primepi(gpf)*(n/gpf); }; A366388(n) = if(n && !bitand(n,n-1),0,1+A366388(A366385(n)));
Comments