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.

A345726 a(n) = Product_{k=1..n} k^(floor(n/k)^2).

Original entry on oeis.org

1, 2, 6, 192, 960, 4976640, 34836480, 2283043553280, 4993016251023360, 3195530400654950400000, 35150834407204454400000, 417877827219530751882239882035200000, 5432411753853899774469118466457600000, 213700126654516647665669790727613605478400000
Offset: 1

Views

Author

Vaclav Kotesovec, Jun 25 2021

Keywords

Crossrefs

Programs

  • Magma
    [(&*[j^(Floor(n/j))^2: j in [1..n]]): n in [1..30]]; // G. C. Greubel, Feb 05 2024
    
  • Mathematica
    Table[Product[k^(Floor[n/k]^2), {k, 1, n}], {n, 1, 15}]
  • PARI
    a(n) = prod(k=1, n, k^((n\k)^2)); \\ Michel Marcus, Jun 26 2021
    
  • SageMath
    [product(j^((n//j)^2) for j in range(1,n+1)) for n in range(1,31)] # G. C. Greubel, Feb 05 2024

Formula

log(a(n)) ~ c * n^2, where c = -zeta'(2) = A073002.