OFFSET
1,4
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..1000
Pavel Valtr, The probability that $n$ random points in a triangle are in convex position, Combinatorica, Vol. 16, No. 4 (1996), 567-573.
Eric Weisstein's World of Mathematics, Sylvester's Four-Point Problem.
FORMULA
a(n) = numerator( (A000108(n-1)/(n-1)!)^2 ). - G. C. Greubel, Sep 12 2023
a(n)/A005017(n) ~ 2^(4*n-5) * exp(2*n) / (n^(2*n+2) * Pi^2). - Amiram Eldar, Oct 28 2025
EXAMPLE
Fractions begin: 1, 1, 1, 25/36, 49/144, 49/400, 121/3600, 20449/2822400, 20449/16257024, 5909761/32920473600, 17631601/823011840000, 17631601/8129341440000, ...
MATHEMATICA
Numerator[Table[(Binomial[2n-2, n-1]/n!)^2, {n, 30}]] (* Harvey P. Dale, May 30 2012 *)
PROG
(PARI) a(n) = numerator((binomial(2*n-2, n-1)/n!)^2); \\ Michel Marcus, Jul 14 2022
(Magma) [Numerator((Catalan(n-1)/Factorial(n-1))^2): n in [1..40]]; // G. C. Greubel, Sep 12 2023
(SageMath) [numerator((catalan_number(n-1)/factorial(n-1))^2) for n in range(1, 41)] # G. C. Greubel, Sep 12 2023
CROSSREFS
KEYWORD
nonn,frac
AUTHOR
STATUS
approved
