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.

A020080 a(n) = floor( Gamma(n + 5/6)/Gamma(5/6) ).

Original entry on oeis.org

1, 0, 1, 4, 16, 80, 467, 3196, 25042, 221208, 2175216, 23564850, 278850730, 3578584368, 49503750432, 734305631412, 11626505830701, 195712848150140, 3490212458677514, 65732334638426516, 1303691303662125905
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

  • Magma
    [Truncate(Gamma(n + 5/6)/Gamma(5/6)): n in [0..30]]; // G. C. Greubel, Nov 19 2018
    
  • Maple
    Digits:= 64: x:=5/6: f:= proc(n,x) trunc(GAMMA(n+x)/GAMMA(x)); end;
    seq(floor(pochhammer(5/6,n)), n = 0..25); # G. C. Greubel, Nov 17 2019
  • Mathematica
    Floor[Pochhammer[5/6, Range[0, 25]]] (* G. C. Greubel, Nov 19 2018 *)
  • PARI
    vector(26, n, my(x=5/6); gamma(n-1+x)\gamma(x) ) \\ G. C. Greubel, Nov 19 2018
    
  • Sage
    [int(gamma(n + 5/6)/gamma(5/6))  for n in range(30)] # G. C. Greubel, Nov 19 2018

A020035 Nearest integer to Gamma(n + 5/6)/Gamma(5/6).

Original entry on oeis.org

1, 1, 2, 4, 17, 80, 468, 3197, 25042, 221209, 2175217, 23564850, 278850730, 3578584369, 49503750432, 734305631413, 11626505830701, 195712848150141, 3490212458677514, 65732334638426516, 1303691303662125906
Offset: 0

Views

Author

Keywords

Comments

Gamma(n + 5/6)/Gamma(5/6) = 1, 5/6, 55/36, 935/216, 21505/1296, 623645/7776, 21827575/46656, 894930575/279936, ... - R. J. Mathar, Sep 04 2016

Crossrefs

Programs

  • Maple
    Digits := 64:f := proc(n,x) round(GAMMA(n+x)/GAMMA(x)); end;
Showing 1-2 of 2 results.