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.

A306729 a(n) = Product_{i=0..n, j=0..n} (i! + j!).

Original entry on oeis.org

2, 16, 5184, 9559130112, 109045776752640000000000, 27488263744928988967331390258832998400000000000, 1147897050240877062218236820013018349788772091106840426434074807527014400000000000000
Offset: 0

Views

Author

Vaclav Kotesovec, Mar 06 2019

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Product[i! + j!, {i, 0, n}, {j, 0, n}], {n, 0, 7}]
    Clear[a]; a[n_] := a[n] = If[n == 0, 2, a[n-1] * Product[k! + n!, {k, 0, n}]^2 / (2*n!)]; Table[a[n], {n, 0, 7}] (* Vaclav Kotesovec, Mar 27 2019 *)
    Table[Product[Product[k! + j!, {k, 0, j}], {j, 1, n}]^2 / (2^(n-1) * BarnesG[n + 2]), {n, 0, 7}] (* Vaclav Kotesovec, Mar 27 2019 *)
  • Python
    from math import prod, factorial as f
    def a(n): return prod(f(i)+f(j) for i in range(n) for j in range(n))
    print([a(n) for n in range(1, 8)]) # Michael S. Branicky, Feb 16 2021

Formula

a(n) ~ c * 2^(n^2/2 + 2*n) * Pi^(n^2/2 + n) * n^(2*n^3/3 + 2*n^2 + 11*n/6 + 5/2) / exp(8*n^3/9 + 2*n^2 + n), where c = A324569 = 62.14398692334529025548974541735...
a(n) = a(n-1) * A323717(n)^2 / (2*n!). - Vaclav Kotesovec, Mar 28 2019

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

Original entry on oeis.org

3, 81, 103680, 447180963840, 7014935716261432173527040, 1921470539412808834455592518302690305036517376000, 81601182941928855942156180258180656419177691149082352022004942698629910149621350400000
Offset: 0

Views

Author

Vaclav Kotesovec, Mar 26 2019

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Product[i! + j! + 1, {i, 0, n}, {j, 0, n}], {n, 0, 7}]

Formula

a(n) = A306729(n) * Product_{i=0..n, j=0..n} (1 + 1/(i! + j!)).
a(n) ~ c * A324569 * 2^(n^2/2 + 2*n) * Pi^(n^2/2 + n) * n^(2*n^3/3 + 2*n^2 + 11*n/6 + 5/2) / exp(8*n^3/9 + 2*n^2 + n), where c = Product_{i>=0, j>=0} (1 + 1/(i! + j!)) = 71.32069635593350979104242285703294604508330622582076432053456223608...
Showing 1-2 of 2 results.