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.

A049389 a(n) = (n+8)!/8!.

Original entry on oeis.org

1, 9, 90, 990, 11880, 154440, 2162160, 32432400, 518918400, 8821612800, 158789030400, 3016991577600, 60339831552000, 1267136462592000, 27877002177024000, 641171050071552000, 15388105201717248000, 384702630042931200000, 10002268381116211200000
Offset: 0

Views

Author

Keywords

Comments

The asymptotic expansion of the higher-order exponential integral E(x,m=1,n=9) ~ exp(-x)/x*(1 - 9/x + 90/x^2 - 990/x^3 + 11880/x^4 - 154440/x^5 + ...) leads to the sequence given above. See A163931 and A130534 for more information. - Johannes W. Meijer, Oct 20 2009

Crossrefs

Programs

  • Haskell
    a049389 = (flip div 40320) . a000142 . (+ 8)
    -- Reinhard Zumkeller, Aug 31 2014
  • Magma
    [Factorial(n+8)/40320: n in [0..25]]; // Vincenzo Librandi, Jul 20 2011
    
  • Mathematica
    a[n_] := (n + 8)!/8!; Array[a, 20, 0] (* Amiram Eldar, Jan 15 2023 *)
  • PARI
    a(n) = (n+8)!/8!;
    

Formula

a(n)= A051380(n, 0)*(-1)^n (first unsigned column of triangle).
a(n) = (n+8)!/8!.
E.g.f.: 1/(1-x)^9.
a(n) = A173333(n+8,8). - Reinhard Zumkeller, Feb 19 2010
a(n) = A245334(n+8,n) / 9. - Reinhard Zumkeller, Aug 31 2014
From Amiram Eldar, Jan 15 2023: (Start)
Sum_{n>=0} 1/a(n) = 40320*e - 109600.
Sum_{n>=0} (-1)^n/a(n) = 40320/e - 14832. (End)