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.

A020095 Ceiling of GAMMA(n+10/11)/GAMMA(10/11).

Original entry on oeis.org

1, 1, 2, 6, 20, 97, 573, 3956, 31286, 278721, 2761872, 30129504, 358814995, 4631975384, 64426566695, 960541539817, 15281342678897, 258393612570435, 4627594697852334, 87503608832116848, 1742117303112144503, 36426089065072112322, 798062496789307188134
Offset: 0

Views

Author

Keywords

Programs

  • Maple
    Digits := 64:f := proc(n, x) ceil(GAMMA(n+x)/GAMMA(x)) end:
    seq(f(n, 10/11), n=0..25);
    # Alternative:
    M[0]:= 1: for i from 1 to 30 do M[i]:= M[i-1]*(i-1/11)od:
    seq(ceil(M[i]),i=0..30); # Robert Israel, May 27 2019