login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A306728
a(n) = Product_{i=1..n, j=1..n} (i*(i+1) + j*(j+1)).
1
1, 4, 3072, 4682022912, 62745927042654535680, 22033340103629170301586112512000000, 479715049773154880180722813201712394999926095872000000, 1318058833735625830065875826842622254472987373414662267314001234660163584000000
OFFSET
0,2
FORMULA
a(n) ~ c * 2^(n*(n+2)) * exp(Pi*n*(n+2)/2 - 3*n^2) * n^(2*n^2 - 2 - Pi/4), where c = 0.4952828896469310726828820344381813905230827930914109676983577406850360879...
MATHEMATICA
Table[Product[i*(i+1)+j*(j+1), {i, 1, n}, {j, 1, n}], {n, 0, 8}]
PROG
(Python)
from math import prod, factorial
def A306728(n): return (prod(i*(i+1)+j*(j+1) for i in range(1, n) for j in range(i+1, n+1))*factorial(n))**2*(n+1)<<n # Chai Wah Wu, Nov 22 2023
CROSSREFS
Sequence in context: A297008 A349074 A347605 * A172953 A132639 A132643
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Mar 06 2019
STATUS
approved