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!)
A325049 a(n) = Product_{i=0..n, j=0..n} (i!*j! + 1). 1

%I #8 Feb 16 2021 13:53:10

%S 2,16,6480,97287175440,1106928595945936328906250000,

%T 856337316801926460412829104011102303451051923953906250000

%N a(n) = Product_{i=0..n, j=0..n} (i!*j! + 1).

%F a(n) ~ c * (2*Pi)^((n+1)^2) * n^((n+1)*(6*n^2 + 12*n + 5)/6) / (A^(2*n+2) * exp(3*n^3/2 + 7*n^2/2 + 11*n/6 - 1/3)), where c = Product_{i>=0, j>=0} (1 + 1/(i!*j!)) = 297.557220207478770881166673701943476275955597334672817171839377... and A is the Glaisher-Kinkelin constant A074962.

%t Table[Product[i!*j! + 1, {i, 0, n}, {j, 0, n}], {n, 0, 7}]

%t Table[BarnesG[n+2]^(2*n+2) * Product[1 + 1/(i!*j!), {i, 0, n}, {j, 0, n}], {n, 0, 7}]

%o (Python)

%o from math import prod, factorial as f

%o def a(n): return prod(f(i)*f(j)+1 for i in range(n) for j in range(n))

%o print([a(n) for n in range(1, 7)]) # _Michael S. Branicky_, Feb 16 2021

%Y Cf. A306760, A325051.

%K nonn

%O 0,1

%A _Vaclav Kotesovec_, Mar 26 2019

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 March 29 05:28 EDT 2024. Contains 371264 sequences. (Running on oeis4.)