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!.

This page as a plain text file.
%I A049389 #22 Jan 15 2023 02:41:41
%S A049389 1,9,90,990,11880,154440,2162160,32432400,518918400,8821612800,
%T A049389 158789030400,3016991577600,60339831552000,1267136462592000,
%U A049389 27877002177024000,641171050071552000,15388105201717248000,384702630042931200000,10002268381116211200000
%N A049389 a(n) = (n+8)!/8!.
%C A049389 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
%H A049389 Vincenzo Librandi, <a href="/A049389/b049389.txt">Table of n, a(n) for n = 0..300</a>
%F A049389 a(n)= A051380(n, 0)*(-1)^n (first unsigned column of triangle).
%F A049389 a(n) = (n+8)!/8!.
%F A049389 E.g.f.: 1/(1-x)^9.
%F A049389 a(n) = A173333(n+8,8). - _Reinhard Zumkeller_, Feb 19 2010
%F A049389 a(n) = A245334(n+8,n) / 9. - _Reinhard Zumkeller_, Aug 31 2014
%F A049389 From _Amiram Eldar_, Jan 15 2023: (Start)
%F A049389 Sum_{n>=0} 1/a(n) = 40320*e - 109600.
%F A049389 Sum_{n>=0} (-1)^n/a(n) = 40320/e - 14832. (End)
%t A049389 a[n_] := (n + 8)!/8!; Array[a, 20, 0] (* _Amiram Eldar_, Jan 15 2023 *)
%o A049389 (Magma) [Factorial(n+8)/40320: n in [0..25]]; // _Vincenzo Librandi_, Jul 20 2011
%o A049389 (PARI) a(n) = (n+8)!/8!;
%o A049389 (Haskell)
%o A049389 a049389 = (flip div 40320) . a000142 . (+ 8)
%o A049389 -- _Reinhard Zumkeller_, Aug 31 2014
%Y A049389 Cf. A000142, A001710, A001715, A001720, A001725, A001730, A049388, A051379, A051380.
%Y A049389 Cf. A130534, A163931, A173333, A245334.
%K A049389 easy,nonn
%O A049389 0,2
%A A049389 _Wolfdieter Lang_