A358731 Matula-Goebel numbers of rooted trees whose number of nodes is one more than their node-height.
4, 6, 7, 10, 13, 17, 22, 29, 41, 59, 62, 79, 109, 179, 254, 277, 293, 401, 599, 1063, 1418, 1609, 1787, 1913, 2749, 4397, 8527, 10762, 11827, 13613, 15299, 16519, 24859, 42043, 87803
Offset: 1
Examples
The terms together with their corresponding rooted trees begin: 4: (oo) 6: (o(o)) 7: ((oo)) 10: (o((o))) 13: ((o(o))) 17: (((oo))) 22: (o(((o)))) 29: ((o((o)))) 41: (((o(o)))) 59: ((((oo)))) 62: (o((((o))))) 79: ((o(((o))))) 109: (((o((o))))) 179: ((((o(o))))) 254: (o(((((o)))))) 277: (((((oo))))) 293: ((o((((o)))))) 401: (((o(((o)))))) 599: ((((o((o))))))
Crossrefs
Programs
-
Mathematica
MGTree[n_]:=If[n==1,{},MGTree/@Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[1000],Count[MGTree[#],_,{0,Infinity}]==Depth[MGTree[#]]&]
Comments