OFFSET
0,1
COMMENTS
Row 0 of A361032.
The central binomial numbers A000984(n) = (2*n)!/n!^2 have the property that A000984(n) is divisible by n + 1 and the result (2*n)!/(n!*(n+1)!) is the n-th Catalan number A000108(n). Similarly, the numbers A008977(n) = (4*n)!/n!^4 appear to have the property that 3*A008977(n) is divisible by (n + 1)^3, leading to the present sequence. Cf. A361028. Do these numbers have a combinatorial interpretation?
Conjecture: a(n) is odd iff n = 2^k - 1 for some k >= 0.
FORMULA
a(n) = 3*A008977(n)/(n+1)^3.
a(n) = (3/4)*A008977(n+1)/((4*n+1)*(4*n+2)*(4*n+3)).
P-recursive: a(n) = 4*(4*n-1)*(4*n-2)*(4*n-3)/(n+1)^3 * a(n-1) with a(0) = 3.
The o.g.f. A(x) satisfies the differential equation
x^3*(1 - 256*x)*A(x)''' + x^2*(6 - 1152*x)*A(x)'' + x*(7 - 816*x)*A(x)' + (1 - 24*x)*A(x) - 3 = 0 with A(0) = 3, A'(0) = 9 and A''(0) = 560.
a(n) ~ 3*sqrt(1/(2*Pi^3)) * 2^(8*n)/n^(9/2).
MAPLE
seq(3*(4*n)!/(n!*(n+1)!^3), n = 0..20);
MATHEMATICA
Table[3 (4n)!/(n! ((n+1)!)^3), {n, 0, 15}] (* Harvey P. Dale, Jul 30 2024 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Peter Bala, Mar 01 2023
STATUS
approved