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.

A093128 Number of dissections of a polygon using strictly disjoint diagonals.

This page as a plain text file.
%I A093128 #40 Aug 21 2025 16:43:51
%S A093128 1,1,3,6,13,29,65,148,341,793,1860,4395,10452,24999,60097,145130,
%T A093128 351916,856502,2091599,5123437,12585354,30995031,76516348,189310421,
%U A093128 469335998,1165790119,2900870597,7230320746,18049387617,45123390441,112963369113,283162526640,710664478791,1785645155847,4491596869206
%N A093128 Number of dissections of a polygon using strictly disjoint diagonals.
%C A093128 a(n) is the number of dissections of a regular (n+2)-gon using 0 or more strictly disjoint diagonals.
%H A093128 G. C. Greubel, <a href="/A093128/b093128.txt">Table of n, a(n) for n = 0..1000</a>
%H A093128 Jean-Luc Baril, Sergey Kirgizov, Rémi Maréchal, and Vincent Vajnovszki, <a href="https://arxiv.org/abs/2211.04914">Grand Dyck paths with air pockets</a>, arXiv:2211.04914 [math.CO], 2022.
%H A093128 Samuele Giraudo, <a href="https://arxiv.org/abs/1709.08416">Combalgebraic structures on decorated cliques</a>, Formal Power Series and Algebraic Combinatorics, Séminaire Lotharingien de Combinatoire, 78B.15, 2017, p. 8; arXiv:1709.08416 [math.CO], 2017.
%H A093128 Giovanni Resta, <a href="/A093128/a093128.pdf">Illustration of a(3)-a(10)</a>
%F A093128 G.f.: 1 + (1+x)*( 1 -2*x -x^3 - sqrt((1 -3*x+ x^2)*(1-x)*(1-x^3)) )/(2*x^4).
%F A093128 a(n) = A004148(n+2) - A004148(n) for n>=1.
%F A093128 Logarithmic derivative yields A132461. - _Paul D. Hanna_, Nov 09 2013
%F A093128 G.f.: exp( Sum_{n>=1} A132461(n)*x^n/n ), where A132461(n) = Sum_{k=0..[n/2]} (C(n-k,k) + C(n-k-1,k-1))^2. - _Paul D. Hanna_, Nov 09 2013
%e A093128 a(3)=6 because there are 5 ways to insert a single diagonal into a pentagon plus the empty dissection.
%p A093128 seq(coeff(series(1 + (1+x)*( 1 -2*x -x^3 - sqrt((1 -3*x+ x^2)*(1-x)*(1-x^3)) )/(2*x^4), x, n+2), x, n), n = 0..40); # _G. C. Greubel_, Dec 28 2019
%t A093128 CoefficientList[Series[1 +(1+x)*(1-2*x-x^3 -Sqrt[(1-3*x+x^2)*(1-x)*(1-x^3)])/( 2*x^4), {x,0,40}], x] (* _G. C. Greubel_, Dec 28 2019 *)
%o A093128 (PARI) {A132461(n)=sum(k=0,n\2,(binomial(n-k, k)+binomial(n-k-1, k-1))^2)}
%o A093128 {a(n)=polcoeff(exp(sum(m=1,n,A132461(m)*x^m/m)+x*O(x^n)),n)} \\ _Paul D. Hanna_, Nov 09 2013
%o A093128 (Magma) R<x>:=PowerSeriesRing(Rationals(), 40); Coefficients(R!( 1 + (1+x)*( 1 -2*x -x^3 - Sqrt((1 -3*x+ x^2)*(1-x)*(1-x^3)) )/(2*x^4) )); // _G. C. Greubel_, Dec 28 2019
%o A093128 (Sage)
%o A093128 def A093128_list(prec):
%o A093128     P.<x> = PowerSeriesRing(ZZ, prec)
%o A093128     return P( 1 + (1+x)*( 1 -2*x -x^3 - sqrt((1 -3*x+ x^2)*(1-x)*(1-x^3)) )/(2*x^4) ).list()
%o A093128 A093128_list(40) # _G. C. Greubel_, Dec 28 2019
%Y A093128 Row sums of A093127.
%K A093128 easy,nonn
%O A093128 0,3
%A A093128 _David Callan_, Mar 23 2004
%E A093128 Terms a(26) onward added by _G. C. Greubel_, Dec 28 2019