OFFSET
1,2
COMMENTS
An unlabeled rooted tree has thinning limbs if its outdegrees are weakly decreasing from root to leaves.
MATHEMATICA
MGtree[n_]:=If[n===1, {}, MGtree/@Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
thinQ[t_]:=And@@Cases[t, b_List:>Length[b]>=Max@@Length/@b, {0, Infinity}];
Select[Range[200], thinQ[MGtree[#]]&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jan 16 2018
STATUS
approved