login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A298303
Matula-Goebel numbers of rooted trees with thinning limbs.
4
1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 14, 15, 16, 18, 20, 21, 22, 24, 25, 26, 27, 28, 30, 31, 32, 33, 35, 36, 39, 40, 42, 44, 45, 46, 48, 49, 50, 52, 54, 55, 56, 58, 60, 62, 63, 64, 65, 66, 69, 70, 72, 75, 76, 77, 78, 80, 81, 84, 86, 87, 88, 90, 91, 92, 93, 94
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[#]]&]
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jan 16 2018
STATUS
approved