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.

A020014 Nearest integer to Gamma(n + 1/11)/Gamma(1/11).

Original entry on oeis.org

1, 0, 0, 0, 1, 3, 13, 81, 577, 4665, 42405, 427909, 4745900, 57382240, 751185683, 10584889175, 159735600270, 2570291022522, 43928610203109, 794708493674422, 15171707606511701, 304813398276280545, 6428791672736098775
Offset: 0

Views

Author

Keywords

Examples

			Gamma(n + 1/11)/Gamma(1/11) = 1, 1/11, 12/121, 276/1331, 9384/14641, 422280/161051, 23647680/1771561, ... - _R. J. Mathar_, Sep 04 2016
		

Crossrefs

Cf. A020059, A020104, A010680 (decimal expansion of 1/11), A256192 (decimal expansion of Gamma(1/11)).

Programs

  • Magma
    [Round(Gamma(n +1/11)/Gamma(1/11)): n in [0..30]]; // G. C. Greubel, Jan 19 2018
  • Maple
    f := proc(n) round(simplify(GAMMA(n+1/11)/GAMMA(1/11))); end:
    map(f, [$0..60]); # Edited by Robert Israel, Mar 25 2018
  • Mathematica
    Table[Round[Gamma[n + 1/11]/Gamma[1/11]], {n, 0,50}] (* G. C. Greubel, Jan 19 2018 *)
  • PARI
    for(n=0,30, print1(round(gamma(n+1/11)/gamma(1/11)), ", ")) \\ G. C. Greubel, Jan 19 2018