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.
%I A102893 #52 Jan 26 2025 03:51:04 %S A102893 1,0,1,5,25,130,700,3876,21945,126500,740025,4382625,26225628, %T A102893 158331880,963250600,5899491640,36345082425,225082957512, %U A102893 1400431689475,8749779798375,54874635255825,345329274848250,2179969531405680 %N A102893 Number of noncrossing trees with n edges and having degree of the root at least 2. %C A102893 [a(n+2)]= [1,5,25,130,700,...] is the self-convolution 5th power of A001764. - _Philippe Deléham_, Nov 11 2009 %C A102893 a(n) is the number of dissections of a convex (2n+2)-sided polygon by nonintersecting diagonals into quadrilaterals such that at least one of the dividing diagonals passes through a chosen vertex. - _Muhammed Sefa Saydam_, Jan 24 2025 %H A102893 Andrew Howroyd, <a href="/A102893/b102893.txt">Table of n, a(n) for n = 0..200</a> %H A102893 David Bevan, Robert Brignall, Andrew Elvey Price and Jay Pantone, <a href="http://arxiv.org/abs/1711.10325">A structural characterisation of Av(1324) and new bounds on its growth rate</a>, arXiv preprint arXiv:1711.10325 [math.CO], 2017-2019. %H A102893 Emanuele Munarini, <a href="https://cs.uwaterloo.ca/journals/JIS/VOL20/Munarini/muna4.pdf">Shifting Property for Riordan, Sheffer and Connection Constants Matrices</a>, Journal of Integer Sequences, Vol. 20 (2017), Article 17.8.2. %H A102893 M. Noy, <a href="http://dx.doi.org/10.1016/S0012-365X(97)00121-0">Enumeration of noncrossing trees on a circle</a>, Discrete Math., 180, 301-313, 1998. %F A102893 a(0)=1; a(n) = 5*binomial(3n-1, n-2)/(3n-1) if n > 0. %F A102893 G.f.: g - z*g^2, where g = 1 + z*g^3 is the g.f. of the ternary numbers (A001764). %F A102893 a(n) = A001764(n) - A006013(n-1). %F A102893 D-finite with recurrence 2*n*(2*n+1)*(n-2)*a(n) -3*(n-1)*(3*n-4)*(3*n-2)*a(n-1)=0. - _R. J. Mathar_, Feb 16 2018 %F A102893 a(n) ~ (5*3^(3*n + 1/2))/(36*4^n*n^(3/2)*sqrt(Pi)). - _Peter Luschny_, Aug 08 2020 %e A102893 a(2)=1 because among the noncrossing trees with 2 edges, namely /_, _\ and /\, only the last one has root degree >1. %p A102893 a:=proc(n) if n=0 then 1 else 5*binomial(3*n-1,n-2)/(3*n-1) fi end: %p A102893 seq(a(n), n=0..25); %p A102893 # Recurrence: %p A102893 a := proc(n) option remember; if n < 3 then return [1,0,1][n+1] fi; %p A102893 (27*n^3 - 81*n^2 + 78*n - 24)*a(n - 1)/(4*n^3 - 6*n^2 - 4*n) end: %p A102893 seq(a(n), n=0..23); # _Peter Luschny_, Aug 08 2020 %p A102893 alias(PS=ListTools:-PartialSums): A102893List := proc(m) local A, P, n; %p A102893 A := [1,0]; P := [1]; for n from 1 to m - 2 do P := PS(PS([op(P), P[-1]])); %p A102893 A := [op(A), P[-2]] od; A end: A102893List(23); # _Peter Luschny_, Mar 26 2022 %t A102893 a[0] = 1; a[n_] := 5*Binomial[3n-1, n-2]/(3n-1); Table[a[n], {n, 0, 22}] (* _Jean-François Alcover_, Mar 01 2018 *) %o A102893 (PARI) a(n) = if(n<=1, n==0, 5*binomial(3*n-1, n-2)/(3*n-1)); \\ _Andrew Howroyd_, Nov 17 2017 %Y A102893 Column k=0 of A102892 and column k=0 of A102593. %Y A102893 Cf. A001764, A006013. %K A102893 nonn,easy %O A102893 0,4 %A A102893 _Emeric Deutsch_, Jan 16 2005