A354322 Irregular triangle read by rows where row n lists the distinct Matula-Goebel numbers of terminal subtrees occurring in the tree with Matula-Goebel number n.
1, 1, 2, 1, 2, 3, 1, 4, 1, 2, 3, 5, 1, 2, 6, 1, 4, 7, 1, 8, 1, 2, 9, 1, 2, 3, 10, 1, 2, 3, 5, 11, 1, 2, 12, 1, 2, 6, 13, 1, 4, 14, 1, 2, 3, 15, 1, 16, 1, 4, 7, 17, 1, 2, 18, 1, 8, 19, 1, 2, 3, 20, 1, 2, 4, 21, 1, 2, 3, 5, 22, 1, 2, 9, 23, 1, 2, 24, 1, 2, 3, 25
Offset: 1
Examples
Triangle begins: k=1 2 3 4 n=1: 1, n=2: 1, 2, n=3: 1, 2, 3, n=4: 1, 4, n=5: 1, 2, 3, 5, n=6: 1, 2, 6, n=7: 1, 4, 7, For n=78, tree 78 and its subtree numbers are 78 / | \ 1 2 6 distinct tree numbers | | \ row(78) = {1, 2, 6, 78} 1 1 2 | 1
Links
Programs
-
PARI
\\ See links.
Formula
row(n) = union of row(primepi(p)) for each p a prime factor of n, followed by n itself.
Comments