cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A214202 Number of rooted planar binary unlabeled trees with n leaves and caterpillar index = 4.

This page as a plain text file.
%I A214202 #16 Jun 18 2017 13:52:58
%S A214202 0,0,0,0,4,0,8,32,104,352,1264,4480,15992,57408,207152,750144,2725456,
%T A214202 9931328,36282464,132852224,487443672,1791742592,6597006896,
%U A214202 24326190016,89825979568,332110462016,1229345599520,4555536068352,16898439030192,62743172964224,233170424975072,867250463225984,3228189434389152,12025362901992064,44827564359795392
%N A214202 Number of rooted planar binary unlabeled trees with n leaves and caterpillar index = 4.
%H A214202 Filippo Disanto, <a href="http://arxiv.org/abs/1202.5668">The size of the biggest Caterpillar subtree in binary rooted planar trees</a>, arXiv preprint arXiv:1202.5668 [math.CO], 2012.
%p A214202 C:=(1-sqrt(1-4*x))/2; # A000108 with a different offset
%p A214202 # F-(k): gives A025266, A025271, A214200, A214203
%p A214202 Fm:=k->(1/2)*(1-sqrt(1-4*x+2^(k+1)*x^(k+1)));
%p A214202 Sm:=k->seriestolist(series(Fm(k),x,50));
%p A214202 # F+(k): gives A000108, A214198, A214201, A214204
%p A214202 Fp:=k->C-Fm(k-1);
%p A214202 Sp:=k->seriestolist(series(Fp(k),x,50));
%p A214202 # F(k): gives A025266, A214199, A214202, A214205
%p A214202 F:=k->Fm(k)-Fm(k-1);
%p A214202 S:=k->seriestolist(series(F(k),x,50));
%t A214202 (1/2)*(Sqrt[1 - 4*x + 16*x^4] - Sqrt[1 - 4*x + 32*x^5]) + O[x]^35 // CoefficientList[#, x]& (* _Jean-François Alcover_, Nov 07 2016, after Maple *)
%Y A214202 Cf. A025266, A000108, A025271, A214198-A214205.
%K A214202 nonn
%O A214202 0,5
%A A214202 _N. J. A. Sloane_, Jul 07 2012