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)/A004824(n) ~ 3^(3*n-5/2) * exp(2*n) / (2^(n+2) * n^(2*n+3/2) * Pi^(3/2)). - Amiram Eldar, Oct 28 2025
EXAMPLE
Fractions begin: 1, 1, 1, 2/3, 11/36, 91/900, 17/675, 323/66150, 4807/6350400, 3289/34292160, 8671/857304000, 11687/12966723000, ...
MATHEMATICA
Table[Numerator[2^n*(3*n - 3)!/(((n - 1)!)^3*(2*n)!)], {n, 1, 50}] (* G. C. Greubel, Oct 12 2018 *)
PROG
(PARI) for(n=1, 50, print1(numerator(2^n*(3*n - 3)!/(((n - 1)!)^3*(2*n)!)), ", ")) \\ G. C. Greubel, Oct 12 2018
(Magma) [Numerator(2^n*Factorial(3*n - 3)/((Factorial(n - 1))^3*Factorial(2*n))): n in [1..50]]; // G. C. Greubel, Oct 12 2018
CROSSREFS
KEYWORD
nonn,frac,easy
AUTHOR
STATUS
approved
