login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A032171 Number of rooted compound windmills (mobiles) of n nodes with no symmetries. 9

%I #28 Sep 11 2018 05:01:27

%S 1,1,1,2,4,10,23,59,148,385,1006,2678,7170,19421,52933,145364,401421,

%T 1114713,3109710,8713076,24506121,69168705,195849114,556165311,

%U 1583601840,4520226558,12931917204,37075154703

%N Number of rooted compound windmills (mobiles) of n nodes with no symmetries.

%C Also the number of locally Lyndon plane trees with n nodes, where a plane tree is locally Lyndon if the sequence of branches directly under any given node is a Lyndon word. - _Gus Wiseman_, Sep 05 2018

%H Andrew Howroyd, <a href="/A032171/b032171.txt">Table of n, a(n) for n = 1..200</a>

%H Wikipedia, <a href="http://en.wikipedia.org/wiki/Lyndon_word">Lyndon word</a>

%H <a href="/index/Mo#mobiles">Index entries for sequences related to mobiles</a>

%F Shifts left under "CHK" (necklace, identity, unlabeled) transform.

%F From _Petros Hadjicostas_, Dec 03 2017: (Start)

%F a(n+1) = (1/n)*Sum_{d|n} mu(n/d)*c(d), where c(n) = n*a(n) + Sum_{s=1..n-1} c(s)*a(n-s) with a(1) = c(1) = 1.

%F G.f.: If A(x) = Sum_{n>=1} a(n)*x^n, then Sum_{n>=1} a(n+1)*x^n = -Sum_{n>=1} (mu(n)/n)*log(1-A(x^n)).

%F The g.f. of the auxiliary sequence (c(n): n>=1) is C(x) = Sum_{n>=1} c(n)*x^n = x*(dA(x)/dx)/(1-A(x)) = x + 3*x^2 + 7*x^3 + 19*x^4 + 51*x^5 + 147*x^6 + 414*x^7 + 1203*x^8 + ...

%F (End)

%e From _Gus Wiseman_, Sep 05 2018: (Start)

%e The a(6) = 10 locally Lyndon plane trees:

%e (((((o)))))

%e (((o(o))))

%e ((o((o))))

%e (o(((o))))

%e ((o)((o)))

%e ((oo(o)))

%e (o(o(o)))

%e (oo((o)))

%e (o(o)(o))

%e (ooo(o))

%e (End)

%t T[n_, k_] := Module[{A}, A[_, _] = 0; If[k < 1 || k > n, 0, For[j = 1, j <= n, j++, A[x_, y_] = x*y - x*Sum[MoebiusMu[i]/i * Log[1 - A [x^i, y^i]] + O[x]^j // Normal , {i, 1, j}]]; Coefficient[Coefficient[A[x, y], x, n], y, k]]];

%t a[n_] := a[n] = Sum[T[n, k], {k, 1, n}];

%t Table[Print["a(", n, ") = ", a[n]]; a[n], {n, 1, 28}] (* _Jean-François Alcover_, Jun 30 2017, using _Michael Somos_' code for A055363 *)

%t LyndonQ[q_]:=Array[OrderedQ[{q,RotateRight[q,#]}]&,Length[q]-1,1,And]&&Array[RotateRight[q,#]&,Length[q],1,UnsameQ];

%t lynplane[n_]:=If[n==1,{{}},Join@@Table[Select[Tuples[lynplane/@c],LyndonQ],{c,Join@@Permutations/@IntegerPartitions[n-1]}]];

%t Table[Length[lynplane[n]],{n,10}] (* _Gus Wiseman_, Sep 05 2018 *)

%o (PARI)

%o CHK(p,n)={sum(d=1, n, moebius(d)/d*log(subst(1/(1+O(x*x^(n\d))-p), x, x^d)))}

%o seq(n)={my(p=O(1));for(i=1, n, p=1+CHK(x*p, i)); Vec(p)} \\ _Andrew Howroyd_, Jun 20 2018

%Y Cf. A032200, A055363.

%Y Cf. A000108, A007853, A032171, A254040, A304173, A304175, A317852.

%K nonn,eigen

%O 1,4

%A _Christian G. Bower_

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)