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.

A292970 Expansion of e.g.f. exp(x^5 * exp(-x)).

Original entry on oeis.org

1, 0, 0, 0, 0, 120, -720, 2520, -6720, 15120, 1784160, -39861360, 478906560, -4151192760, 29059190160, 43589505960, -9531493695360, 262248906060960, -4781455284432960, 68339552332044960, -719390244156842880, 105128808579670680, 293382376643359246320
Offset: 0

Views

Author

Seiichi Manyama, Sep 27 2017

Keywords

Crossrefs

Column k=5 of A292973.

Programs

  • Mathematica
    With[{nn=30},CoefficientList[Series[Exp[x^5 Exp[-x]],{x,0,nn}],x] Range[0,nn]!] (* Harvey P. Dale, Jan 12 2018 *)
  • PARI
    x='x+O('x^66); Vec(serlaplace(exp(x^5*exp(-x))))
    
  • PARI
    a(n) = n!*sum(k=0, n\5, (-k)^(n-5*k)/(k!*(n-5*k)!)); \\ Seiichi Manyama, Jul 10 2022

Formula

a(n) = n! * Sum_{k=0..floor(n/5)} (-k)^(n-5*k)/(k! * (n-5*k)!). - Seiichi Manyama, Jul 10 2022