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-1 of 1 results.

A192668 Floor-Sqrt transform of superfactorials (A000178).

Original entry on oeis.org

1, 1, 1, 3, 16, 185, 4988, 354134, 71109667, 42836123450, 81600285441318, 515548511098996334, 11283348939893661586501, 890385701589932763452676123, 262895016275494870674135139820802, 300629890583706167610723324054426034948
Offset: 0

Views

Author

Emanuele Munarini, Jul 07 2011

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Floor[Sqrt[Product[k!,{k,0,n}]]],{n,0,18}]
  • Maxima
    makelist(floor(sqrt(product(k!,k,0,n))),n,0,12);
    
  • PARI
    a(n) = sqrtint(prod(k=0, n, k!)); \\ Michel Marcus, Apr 08 2021

Formula

a(n) = floor(sqrt(Product_{k=0..n} k!)).

Extensions

Definition corrected by Georg Fischer, Apr 08 2021
Showing 1-1 of 1 results.