login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A053553 Extreme points of set of n X n symmetric substochastic matrices. 2
1, 2, 5, 15, 51, 204, 933, 5115, 32385, 245214, 2090961, 20648547, 221781915, 2679261840, 34419818241, 488332067679, 7271691132033, 118162937240730, 1998172269602685, 36552556172242359, 691550102624919651, 14056929989746659252 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
REFERENCES
R. P. Stanley, Enumerative Combinatorics, Cambridge, Vol. 2, 1999; see Problem 5.25(b).
LINKS
FORMULA
E.g.f.: ((1+x)/(1-x))^(1/4) * exp(x*(3 + x)/2).
a(n) ~ n! * 2^(-1/4)*Gamma(3/4)*exp(2)/(Pi*n^(3/4)). - Vaclav Kotesovec, Aug 13 2013
Recurrence: 2*a(n) = 4*a(n-1) + 2*(n-1)^2*a(n-2) - 3*(n-2)*(n-1)*a(n-3) - 2*(n-3)*(n-2)*(n-1)*a(n-4). - Vaclav Kotesovec, Aug 13 2013
MATHEMATICA
max = 30; f[x_]:= ((1+x)/(1-x))^(1/4)*Exp[x*(3+x)/2]; CoefficientList[ Series[f[x], {x, 0, max}], x]*Range[0, max]! (* Jean-François Alcover, Nov 30 2011 *)
PROG
(PARI) my(x='x+O('x^30)); Vec(serlaplace( ((1+x)/(1-x))^(1/4)*exp(x*(3 + x)/2) )) \\ G. C. Greubel, May 16 2019
(Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!( ((1+x)/(1-x))^(1/4)*Exp(x*(3+x)/2) )); [Factorial(n-1)*b[n]: n in [1..m]]; // G. C. Greubel, May 16 2019
(Sage) m = 30; T = taylor(((1+x)/(1-x))^(1/4)*exp(x*(3+x)/2), x, 0, m); [factorial(n)*T.coefficient(x, n) for n in (0..m)] # G. C. Greubel, May 16 2019
CROSSREFS
Cf. A006847.
Sequence in context: A001681 A343665 A192553 * A276721 A287583 A287276
KEYWORD
nonn,easy,nice
AUTHOR
N. J. A. Sloane, Jan 16 2000
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)