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!)
A325048 a(n) = Product_{i=0..n, j=0..n} (i!^2 + j!^2). 1
2, 16, 80000, 17272267776000000, 277884245560378426290863196025651200000000, 3337940951837185557810120427617693521487357301121536848574225250643001642844160000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
a(n) ~ c * 2^(n*(n+3)) * Pi^(n*(n+2)) * n^((n+1)*(2*n+1)*(2*n+3)/3) / exp(2*n*(2*n+3)*(4*n+3)/9), where c = 401.488675138779168689540247334821476110398137334270208637438...
MATHEMATICA
Table[Product[i!^2 + j!^2, {i, 0, n}, {j, 0, n}], {n, 0, 7}]
Clear[a]; a[n_] := a[n] = If[n == 0, 2, a[n-1] * Product[k!^2 + n!^2, {k, 0, n}]^2 / (2*n!^2)]; Table[a[n], {n, 0, 7}]
PROG
(Python)
from math import prod, factorial as f
def a(n): return prod(f(i)**2+f(j)**2 for i in range(n) for j in range(n))
print([a(n) for n in range(1, 7)]) # Michael S. Branicky, Feb 16 2021
CROSSREFS
Sequence in context: A092798 A333540 A258169 * A068916 A093987 A275588
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Mar 26 2019
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 April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)