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”).

A032160
Number of rooted compound windmills with n nodes where any 2 submills extending from the same node are different.
1
1, 1, 1, 2, 3, 6, 13, 28, 61, 138, 325, 758, 1804, 4317, 10457, 25484, 62478, 154000, 381494, 949217, 2370840, 5943552, 14946766, 37700390, 95346724, 241744854, 614328965, 1564488480, 3992092421, 10205366192
OFFSET
1,4
FORMULA
Shifts left under "CGK" (necklace, element, unlabeled) transform.
PROG
(PARI)
CGK(v)={apply(p->subst(serlaplace(p/y), y, 1), Vec(prod(k=1, #v, (1 + x^k*y + O(x*x^#v))^v[k])-1, -#v))}
seq(n)={my(v=[1]); for(i=2, n, v=concat([1], CGK(v))); v} \\ Andrew Howroyd, Sep 20 2018
CROSSREFS
Sequence in context: A075853 A132045 A032143 * A089735 A316694 A000646
KEYWORD
nonn
STATUS
approved