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.

A259326 Ceiling of ((2^n)!+(2^n-1)^2*(2^(n-1))!*2^(2^(n-1)))/(4^n*(n!)^2).

Original entry on oeis.org

1, 2, 26, 141907500, 17844701940490373256193966080, 59757436204078657410908164193971177467473348779378572774972093904092502425600000
Offset: 1

Views

Author

N. J. A. Sloane, Jun 24 2015

Keywords

Crossrefs

Programs

  • Maple
    # Maple code for A259326, A259327, A259328, A259329, A259330, A259331:
    f:=n->((2^n)!+(2^n-1)^2*(2^(n-1))!*2^(2^(n-1)))/(4^n*(n!)^2);
    f:=n->((2^n)!)/(4^n*(n!)^2);
    f:=n->((2^n)!)/(2^(n*(n-1))*mul((2^i-1)^2,i=1..n));
    f:=n->((2^n)!)/(4^(n^2));
    f:=n->((2^n)!)/(2^(n*(n+1))*mul((2^i-1)^2,i=1..n));
    f:=n->((2^n)!)/(4^n*2^(2*n^2));
    [seq(ceil(f(n)),n=1..6)];

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)];
Showing 1-2 of 2 results.