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.

A046856 a(n) = (2^n)!/4^n, with a(1)=1, a(2)=2.

Original entry on oeis.org

1, 2, 630, 81729648000, 256963707943060088053923840000000, 30978254928194376001814792318154658399137088909801072314160618743948902400000000000000
Offset: 1

Views

Author

Keywords

Comments

The next term has 212 digits. - Harvey P. Dale, May 31 2021

Programs

  • Maple
    a:= n-> ceil((2^n)!/4^n):
    seq(a(n), n=1..6);  # Alois P. Heinz, May 31 2021
  • Mathematica
    Join[{1,2},Table[(2^n)!/4^n,{n,3,6}]] (* Harvey P. Dale, May 31 2021 *)