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.

A080687 Number of labeled n-element posets with no 3-element antichain.

This page as a plain text file.
%I A080687 #20 Feb 08 2021 06:22:50
%S A080687 1,1,3,18,174,2370,41850,908460,23393160,696752280,23558056200,
%T A080687 891259815600,37298874135600,1710662148795600,85319825069278800,
%U A080687 4597474487169564000,266164417718126928000,16475817276720193392000
%N A080687 Number of labeled n-element posets with no 3-element antichain.
%H A080687 Graham Brightwell and Sarah Goodall, <a href="http://dx.doi.org/10.1007/BF00405592">The number of partial orders of fixed width</a>, Order, 13 (1996), 315-337.
%F A080687 E.g.f.: (3-2*x-sqrt(1-4*x)) / (2-2*x+x^2).
%F A080687 a(n) ~ n^(n-1)*2^(2*n+7/2)/(25*exp(n)). - _Vaclav Kotesovec_, Sep 29 2013
%F A080687 a(n) = 2^(-(n+2))*n!*((3-i)*(1-i)^n + (3+i)*(1+i)^n - (1+i)*(-8)^n*binomial(1/2,n)*(2F1(1,-n; 3/2 - n; (1-i)/8) - i*2F1(1, -n; 3/2 - n; (1+i)/8))). - _Benedict W. J. Irwin_, May 27 2016
%F A080687 D-finite with recurrence 2*a(n) +2*(-5*n+6)*a(n-1) +3*(n-1)*(3*n-4)*a(n-2) -2*(n-1)*(n-2)*(2*n-3)*a(n-3)=0. - _R. J. Mathar_, Feb 08 2021
%p A080687 A080687 := proc(n)
%p A080687     (3-2*x-sqrt(1-4*x)) / (2-2*x+x^2) ;
%p A080687     coeftayl(%,x=0,n) ;
%p A080687     %*n! ;
%p A080687 end proc:
%p A080687 seq(A080687(n),n=0..30) ; # _R. J. Mathar_, Feb 08 2021
%t A080687 CoefficientList[Series[(3-2*x-Sqrt[1-4*x])/(2-2*x+x^2), {x, 0, 20}], x]* Range[0, 20]! (* _Vaclav Kotesovec_, Sep 29 2013 *)
%t A080687 Table[2^(-(n + 2)) n! ((3 - I) (1 - I)^n + (3 + I) (1 + I)^n - (1 + I) (-8)^n Binomial[1/2,n] (Hypergeometric2F1[1, -n, 3/2 - n, (1 - I)/8] - I*Hypergeometric2F1[1, -n, 3/2 - n, (1 + I)/8])), {n, 0, 10}] (* _Benedict W. J. Irwin_, May 27 2016 *)
%Y A080687 Cf. A006251 for the unlabeled analog.
%K A080687 nonn
%O A080687 0,3
%A A080687 Detlef Pauly (dettodet(AT)yahoo.de), Mar 03 2003