OFFSET
1,3
COMMENTS
In a planted achiral tree, all branches directly under any given branch are identical.
EXAMPLE
Inequivalent representatives of the a(5) = 13 leaf-colorings:
(1111) ((111)) ((1)(1)) (((11))) ((((1))))
(1112) ((112)) ((1)(2)) (((12)))
(1122) ((123))
(1123)
(1234)
PROG
(PARI) \\ See links in A339645 for combinatorial species functions.
G(v)={my(t=2, p=sv(1)); for(i=1, #v, my(d=v[i]); if(d>1, p=sApplyCI(symGroupCycleIndex(d), d, p, t)); t=t*d+1); p}
cycleIndex(n)={my(recurse(r, v)=if(r==1, G(v), sumdiv(r-1, d, self()((r-1)/d, concat(d, v))))); recurse(n, [])}
a(n)={StructsByCycleIndex(n, cycleIndex(n), n)} \\ Andrew Howroyd, Dec 13 2020
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Aug 21 2018
EXTENSIONS
a(9)-a(30) from Andrew Howroyd, Dec 11 2020
STATUS
approved