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.

A347856 a(n) = (6*n)!/((4*n)!*n!) * (n/2)!/(3*n/2)!.

This page as a plain text file.
%I A347856 #17 Aug 10 2023 17:54:10
%S A347856 1,20,990,56576,3432198,215147520,13768454700,893768826880,
%T A347856 58626071754822,3876225891958784,257898242928604740,
%U A347856 17245961314149335040,1158088115444301759900,78040346182201091555328
%N A347856 a(n) = (6*n)!/((4*n)!*n!) * (n/2)!/(3*n/2)!.
%C A347856 Fractional factorials are defined using the Gamma function; for example, (n/2)! := Gamma(1 + n/2).
%C A347856 The sequence defined by u(n) = (12*n)!/((8*n)!*(2*n)!) * n!/(3*n)! is one of the 52 sporadic integral factorial ratio sequences of height 1 found by V. I. Vasyunin (see Bober, Table 2, Entry 3). See A295433. Here we are essentially considering the sequence (u(n/2))n>=0. The sequence is conjectured to be integral.
%H A347856 J. W. Bober, <a href="http://arxiv.org/abs/0709.1977">Factorial ratios, hypergeometric series, and a family of step functions</a>, arXiv:0709.1977 [math.NT], 2007; J. London Math. Soc., Vol. 79, Issue 2 (2009), 422-444.
%H A347856 F. Rodriguez-Villegas, <a href="http://arxiv.org/abs/math/0701362">Integral ratios of factorials and algebraic hypergeometric functions</a>, arXiv:math/0701362 [math.NT], 2007.
%F A347856 a(n) = binomial(6*n,4*n)*binomial(2*n,n)/binomial(3*n/2,n).
%F A347856 a(2*n) = A295433(n).
%F A347856 a(2*n) = 54*(6*n-1)*(6*n-5)*(12*n-1)*(12*n-5)*(12*n-7)*(12*n-11)/(n*(2*n-1)*(8*n-1)*(8*n-3)*(8*n-5)*(8*n-7))*a(2*n-2);
%F A347856 a(2*n+1) = 216*(9*n^2-1)*(144*n^2-1)*(144*n^2-5^2)/(n*(2*n+1)*(64*n^2-1)*(64*n^2-3^2))*a(2*n-1).
%F A347856 Asymptotics: a(n) ~ 1/(2*sqrt(n*Pi)) *3^(9*n/2)/2^n as n -> infinity.
%F A347856 O.g.f. A(x) = hypergeom([1/12, 1/6, 5/12, 7/12, 5/6, 11/12], [1/8, 3/8, 1/2, 5/8, 7/8], (19683/4)*x^2) + 20*x*hypergeom([17/12, 13/12, 11/12, 7/12, 4/3, 2/3], [11/8, 9/8, 7/8, 5/8, 3/2], (19683/4)*x^2) is conjectured to be algebraic over Q(x).
%F A347856 Conjectural congruences: a(n*p^k) == a(n*p^(k-1)) ( mod p^(3*k) ) for prime p >= 5 and positive integers n and k.
%e A347856 Congruence: a(11) - a(1) = 17245961314149335040 - 20 = (2^2)*5*(11^3)*103*6289876694707 == 0 (mod 11^3).
%p A347856 seq( (6*n)!/((4*n)!*n!) * GAMMA(1+n/2)/GAMMA(1+3*n/2), n = 0..12);
%o A347856 (Python)
%o A347856 from math import factorial
%o A347856 from sympy import factorial2
%o A347856 def A347856(n): return int((factorial(6*n)*factorial2(n)<<n)//(factorial(n<<2)*factorial(n)*factorial2(3*n))) # _Chai Wah Wu_, Aug 10 2023
%Y A347856 Cf. A295433, A347854 - A347858.
%K A347856 nonn,easy
%O A347856 0,2
%A A347856 _Peter Bala_, Sep 17 2021