Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I M3529 #25 Apr 25 2023 13:12:51
%S 4,16,88,538,3568,24596,176354,1298732,9788838,75190990,586994548,
%T 4646450800,37225608048,301400446752,2463161448024,20297411421166,
%U 168503717726980,1408243135178256,11840473621942108,100102553809842544
%N Number of triangulations of the disk G_{n,3}.
%D N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
%H William G. Brown, <a href="http://dx.doi.org/10.1112/plms/s3-14.4.746">Enumeration of Triangulations of the Disk</a>, Proc. Lond. Math. Soc. s3-14 (1964) 746-768.
%p A005495 := proc(n) # see A210696
%p BrownG(n,3) ;
%p end proc:
%p seq(A005495(n),n=0..25) ; # _R. J. Mathar_, Mar 30 2012
%t (* See A210696 for BrownG[n,m] *)
%t a[n_] := BrownG[n, 3];
%t Table[a[n], {n, 0, 25}] (* _Jean-François Alcover_, Apr 25 2023 *)
%K nonn
%O 0,1
%A _N. J. A. Sloane_