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.

A259331 Ceiling of ((2^n)!)/(4^n*2^(2*n^2)).

Original entry on oeis.org

1, 1, 1, 20, 228229620041151627, 6559900643155884106407005800995037605507731066841784640626478359
Offset: 1

Views

Author

N. J. A. Sloane, Jun 24 2015

Keywords

Crossrefs

Programs

  • Maple
    f:=n->((2^n)!)/(4^n*2^(2*n^2));
    [seq(ceil(f(n)),n=1..6)];