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.

A255322 a(n) = Product_{k=0..n} (k^2)!.

Original entry on oeis.org

1, 1, 24, 8709120, 182219087869378560000, 2826438545846116156142906806150103040000000000, 1051416277636507481568264360276689674557030810000137484550133942059008000000000000000000
Offset: 0

Views

Author

Vaclav Kotesovec, Feb 21 2015

Keywords

Comments

Partial products of A088020. - Michel Marcus, Jul 06 2019

Crossrefs

Programs

  • Mathematica
    Table[Product[(k^2)!, {k, 0, n}], {n, 0, 10}]
    FoldList[Times,(Range[0,6]^2)!] (* Harvey P. Dale, Jan 30 2022 *)
    Table[(n^2)!^(n+1) / Product[j^(Ceiling[Sqrt[j]]), {j, 1, n^2}], {n, 0, 6}] (* Vaclav Kotesovec, Apr 23 2024 *)
    Table[(n^2)!^n * (n!)^2 / Product[j^(Floor[Sqrt[j]]), {j, 1, n^2}], {n, 0, 6}] (* Vaclav Kotesovec, Apr 23 2024 *)
  • PARI
    {a(n) = prod(k=1, n, (k^2)!)} \\ Seiichi Manyama, Jul 06 2019

Formula

a(n) ~ c * n^((2*n + 1)*(2*n^2 + 2*n + 3)/6) * (2*Pi)^(n/2) / exp(5*n^3/9 + n^2/2 + n), where c = A255504 = 3.048330306522348566911920417337613015885313475... .
From Vaclav Kotesovec, Apr 23 2024: (Start)
a(n) = Product_{j=1..n^2} j^(n - ceiling(sqrt(j)) + 1).
a(n) = (n^2)!^n * (n!)^2 / Product_{j=1..n^2} j^(floor(sqrt(j))). (End)

A372240 a(n) = Product_{j=1..n} j^(floor(sqrt(j))).

Original entry on oeis.org

1, 1, 2, 6, 96, 2400, 86400, 4233600, 270950400, 197522841600, 197522841600000, 262902902169600000, 454296214949068800000, 998088784243104153600000, 2738755623963077797478400000, 9243300230875387566489600000000, 605768923930649399557462425600000000
Offset: 0

Views

Author

Vaclav Kotesovec, Apr 23 2024

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Product[j^(Floor[Sqrt[j]]), {j, 1, n}], {n, 0, 17}]

Formula

a(n^2) = A372241(n^2) * n!^2 / (n^2)!.
a(n^2) = (n^2)!^n * n!^2 / A255322(n).
log(a(n)) ~ (2*n^(3/2)/3 - n/2 - 5*sqrt(n)/6 + 1/4)*log(n) - 4*n^(3/2)/9 + n/2 - sqrt(n).
Showing 1-2 of 2 results.