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!)
A003241 Number of achiral rooted trees.
(Formerly M1101)
2

%I M1101 #32 Apr 07 2020 11:07:27

%S 1,1,2,4,8,15,26,45,71,110,168,247,351,503,700,944,1294,1719,2267,

%T 2961,3839,4891,6297,7891,9912,12347,15381,18784,23203,28138,34233,

%U 41275,49824,59306,71309,84268,100127,118045,139472,162659

%N Number of achiral rooted trees.

%C There may be an error in eq (37) in the Harary-Robinson paper. - _R. J. Mathar_, Sep 28 2011

%D N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

%H Jean-François Alcover, <a href="/A003241/b003241.txt">Table of n, a(n) for n = 1..80</a>

%H F. Harary and R. W. Robinson, <a href="http://dx.doi.org/10.1515/crll.1975.278-279.322">The number of achiral trees</a>, J. Reine Angew. Math., 278 (1975), 322-335.

%H F. Harary and R. W. Robinson, <a href="/A002995/a002995_1.pdf">The number of achiral trees</a>, J. Reine Angew. Math., 278 (1975), 322-335. (Annotated scanned copy)

%H <a href="/index/Ro#rooted">Index entries for sequences related to rooted trees</a>

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

%p L := BFILETOLIST("b003238.txt") ;

%p Pofxn := proc(n)

%p global L;

%p add( op(i,L)*x^(i+1),i=1..120) ;

%p subs(x=x^n,%) ;

%p end proc:

%p P := Pofxn(1) ;

%p Rn := proc(n)

%p global L;

%p (Pofxn(n-2)*Pofxn(2)+Pofxn(n-1)*Pofxn(1)-Pofxn(n))/x^(n-1) ;

%p end proc:

%p Px2 := Pofxn(2) ;

%p Px3 := Pofxn(3) ;

%p Px4 := Pofxn(4) ;

%p # eq (37) seems not to work

%p # R := 2*x+P^2/x^2+(1-x)*P/x*(Px2/x^2-1)-(P^2-Px2)/2/x -Px3/x^2-(Px2^2-Px4)/2/x^3 ;

%p #use eqs (39)-(44) instead

%p R := x+P+(P^2+Px2)/2/x+P*Px2/x^2+P*Px3/x^3+(Px2^2-Px4)/2/x^3 :

%p # heuristics, adding up to R^(40) suffices for first 80 terms

%p for n from 5 to 40 do

%p R := R+Rn(n) :

%p end do:

%p taylor(R,x=0,80) ;

%p gfun[seriestolist](%) ; # _R. J. Mathar_, Sep 28 2011

%t L = Cases[Import["https://oeis.org/A003238/b003238.txt", "Table"], {_, _}][[All, 2]];

%t Pofxn[n_] := Sum[x^(i+1) L[[i]], {i, 1, 120}] /. x -> x^n;

%t P = Pofxn[1];

%t Rn[n_] := (1/x^(n-1))(Pofxn[2] Pofxn[n-2] + Pofxn[1] Pofxn[n-1] - Pofxn[n]);

%t Px2 = Pofxn[2]; Px3 = Pofxn[3]; Px4 = Pofxn[4];

%t R = (P^2 + Px2)/(2x) + (P Px2)/x^2 + (P Px3)/x^3 + P + (Px2^2 - Px4)/(2x^3) + x;

%t For[n = 5, n <= 40, n++, R += Rn[n]];

%t CoefficientList[R + O[x]^41, x] // Rest (* _Jean-François Alcover_, Apr 06 2020, from Maple *)

%K nonn

%O 1,3

%A _N. J. A. Sloane_

%E Extended by _R. J. Mathar_, Sep 28 2011

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 24 08:21 EDT 2024. Contains 371925 sequences. (Running on oeis4.)