cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A384303 a(n) = Product_{k=0..2*n-1} (3*n+k+1).

Original entry on oeis.org

1, 20, 5040, 3603600, 5079110400, 11861676288000, 41430393164160000, 202250096145377280000, 1315041316842168115200000, 10985733772470225465016320000, 114660755112113373922453094400000, 1462160421974232524852811030528000000, 22368646191981329482560015901851648000000
Offset: 0

Views

Author

Seiichi Manyama, May 25 2025

Keywords

Crossrefs

Programs

  • PARI
    a(n) = (5*n)!/(3*n)!;

Formula

a(n) = RisingFactorial(3*n+1,2*n).
a(n) = (2*n)! * [x^(2*n)] 1/(1 - x)^(3*n+1).
a(n) = (5*n)!/(3*n)!.
D-finite with recurrence 3*(3*n-1)*(3*n-2)*a(n) -5*(5*n-4)*(5*n-3)*(5*n-2)*(5*n-1)*a(n-1)=0. - R. J. Mathar, May 26 2025

A383874 a(n) = (3*n+1)!*(3*n)!/((2*n)!*((n+1)!)^2).

Original entry on oeis.org

1, 18, 4200, 3175200, 5137292160, 14544244915200, 64008493310361600, 405192226643043840000, 3493057136053143859200000, 39378260464472988708249600000, 562659674639968187756457984000000, 9940535265182157971578474463232000000, 212816707229761791940688046273331200000000
Offset: 0

Views

Author

Karol A. Penson, May 22 2025

Keywords

Crossrefs

Programs

  • Mathematica
    A383874[n_] := (3*n+1)!*(3*n)!/((2*n)!*((n+1)!)^2);
    Array[A383874, 15, 0] (* Paolo Xausa, May 26 2025 *)
  • PARI
    a(n) = (3*n+1)!*(3*n)!/((2*n)!*((n+1)!)^2); \\ Michel Marcus, May 22 2025

Formula

O.g.f.: hypergeom([1/3, 2/3, 2/3, 1, 1, 4/3], [1/2, 2, 2], (729*x)/4).
E.g.f.: hypergeom([1/3, 2/3, 2/3, 1, 1, 4/3], [1/2, 2, 2, 1], (729*x)/4).
a(n) = Integral_{x>=0} x^n*W(x)*dx, n>=0, with W(x) = MeijerG([[],[-1/2,1,1]],[[0,-1/3,-1/3,1/3,-2/3],[]],4*x/729)/(81*Pi^(3/2)), where MeijerG is the Meijer G - function. Apparently W(x) cannot be represented by any other simpler functions. W(x) is a positive function on (0,oo), is singular at x = 0 and goes monotonically to zero as x -> oo. Thus a(n) is a positive definite sequence.
W(x) is the solution of the Stieltjes moment problem and it may be non-unique.
a(n) ~ 3^(6*n+2) * n^(2*n - 3/2) / (sqrt(Pi) * 2^(2*n+1) * exp(2*n)). - Vaclav Kotesovec, May 24 2025
Showing 1-2 of 2 results.