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.

A160586 Denominator of Laguerre(n, -11).

Original entry on oeis.org

1, 1, 2, 3, 8, 30, 720, 210, 40320, 90720, 1209600, 226800, 43545600, 5241600, 7925299200, 14859936000, 634023936000, 8083805184000, 582033973248000, 115194223872000, 221172909834240000, 1161157776629760000
Offset: 0

Views

Author

N. J. A. Sloane, Nov 14 2009

Keywords

Crossrefs

For numerators see A160566.

Programs

  • Magma
    [Denominator((&+[Binomial(n,k)*(11^k/Factorial(k)): k in [0..n]])): n in [0..30]]; // G. C. Greubel, May 14 2018
  • Mathematica
    Denominator[Table[LaguerreL[n, -11], {n, 0, 50}]] (* G. C. Greubel, May 14 2018 *)
  • PARI
    for(n=0,30, print1(denominator(sum(k=0,n, binomial(n,k)*(11^k/k!))), ", ")) \\ G. C. Greubel, May 14 2018