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!)
A052473 a(n) = binomial(2*n-5,n-2) + 2. 2
2, 2, 3, 3, 5, 12, 37, 128, 464, 1718, 6437, 24312, 92380, 352718, 1352080, 5200302, 20058302, 77558762, 300540197, 1166803112, 4537567652, 17672631902, 68923264412, 269128937222, 1052049481862, 4116715363802, 16123801841552 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
The best upper bound known for the Erdős-Szekeres problem for n >= 6.
LINKS
Eric Weisstein's World of Mathematics, Happy End Problem
FORMULA
a(n) = 2 + (2^(2*n-5)*Gamma(n - 3/2))/(sqrt(Pi)*Gamma(n-1)).
G.f.: (x^2*(1-x) + (4 + x^2 -x^3)*sqrt(1-4*x))/(2*(1-x)*sqrt(1-4*x)). - Eric W. Weisstein, Jul 29 2011
MAPLE
seq( binomial(2*n-5, n-2) + 2, n=0..40); # Robert Israel, May 19 2019
MATHEMATICA
Table[Binomial[2n-5, n-2] + 2, {n, 0, 30}]
PROG
(PARI) a(n)=binomial(2*n-5, n-2)+2 \\ Charles R Greathouse IV, Jul 29 2011
(Magma) [2 +Binomial(2*n-5, n-2): n in [0..30]]; // G. C. Greubel, May 18 2019
(Sage) [2 +binomial(2*n-5, n-2) for n in (0..30)] # G. C. Greubel, May 18 2019
(GAP) List([0..30], n-> 2+Binomial(2*n-5, n-2)) # G. C. Greubel, May 18 2019
CROSSREFS
Sequence in context: A102330 A103598 A103403 * A165122 A240505 A051715
KEYWORD
nonn,easy
AUTHOR
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 23 22:36 EDT 2024. Contains 371917 sequences. (Running on oeis4.)