The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A361028 a(n) = 2*(3*n)!/(n!*(n+1)!^2). 5
2, 3, 20, 210, 2772, 42042, 700128, 12471030, 233716340, 4557468630, 91752013080, 1896208270320, 40055997189600, 862021408906800, 18849534808095360, 417929529573239310, 9379553386892837940, 212776905535994934750, 4873239487455972633000, 112571832160232967822300 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Row 0 of square array A361027.
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 de Bruijn numbers A006480(n) = (3*n)!/n!^3 have the property that 2*A006480(n) is divisible by (n+1)^2, leading to the present sequence. Do these numbers have a combinatorial interpretation?
LINKS
FORMULA
a(n) = (2/(n+1)^2) * (3*n)!/n!^3.
a(n) = (2/3) * A006480(n+1)/((3*n + 1)*(3*n + 2)), where A006480(n) = (3*n)!/n!^3.
a(n) = (1/3)*27^(n+1)*binomial(1/3, n+1)*binomial(2/3, n+1).
a(n) = 2*C(2*n,n)*C(3*n,n) - 3*C(2*n,n+1)*C(3*n,2*n) + 2*C(2*n,n)*C(3*n,2*n+2) + 2*C(2*n,n+1)*C(3*n,2*n+2). This formula shows that a(n) is an integer for all n.
a(n) = A007226(n) * A000108(n).
a(n) ~ sqrt(3)*27^n/(Pi*n^3).
P-recursive: (n + 1)^2*a(n) = 3*(3*n - 1)*(3*n - 2)*a(n-1) with a(0) = 2.
The o.g.f. A(x) satisfies the differential equation
x^2*(1 - 27*x)*A''(x) + x*(3 - 54*x)*A'(x) + (1 - 6*x)*A(x) - 2 = 0, with
A(0) = 2 and A'(0) = 3.
MAPLE
a := proc(n) option remember; if n = 0 then 2 else 3*(3*n-1)*(3*n-2)/ (n+1)^2*a(n-1) end if; end proc:
seq(a(n), n = 0..20);
CROSSREFS
Sequence in context: A012416 A261317 A353921 * A177946 A006246 A349600
KEYWORD
nonn,tabl,easy
AUTHOR
Peter Bala, Feb 28 2023
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 May 16 04:39 EDT 2024. Contains 372549 sequences. (Running on oeis4.)