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.

A053108 Expansion of 1/(1 - 9*x)^9.

This page as a plain text file.
%I A053108 #28 Oct 01 2023 12:30:31
%S A053108 1,81,3645,120285,3247695,75996063,1595917323,30778405515,
%T A053108 554011299270,9418192087590,152574711818958,2371843247367438,
%U A053108 35577648710511570,517244277406668210,7315311923322878970
%N A053108 Expansion of 1/(1 - 9*x)^9.
%H A053108 Vincenzo Librandi, <a href="/A053108/b053108.txt">Table of n, a(n) for n = 0..400</a>
%H A053108 <a href="/index/Rec#order_09">Index entries for linear recurrences with constant coefficients</a>, signature (81, -2916, 61236, -826686, 7440174, -44641044, 172186884, -387420489, 387420489).
%F A053108 a(n) = 9^n*binomial(n+8, 8).
%F A053108 G.f.: 1/(1 - 9*x)^9.
%F A053108 a(n) = 81*a(n-1) - 2916*a(n-2) + 61236*a(n-3) - 826686*a(n-4) + 7440174*a(n-5) - 44641044*a(n-6) + 172186884*a(n-7) - 387420489*a(n-8) + 387420489*a(n-9); a(0)=1, a(1)=81, a(2)=3645, a(3)=120285, a(4)=3247695, a(5)=75996063, a(6)=1595917323, a(7)=30778405515, a(8)=554011299270. - _Harvey P. Dale_, Jan 21 2012
%t A053108 CoefficientList[Series[1/(1-9x)^9,{x,0,30}],x] (* _Harvey P. Dale_, Jan 21 2012 *)
%o A053108 (Sage)[lucas_number2(n, 9, 0)*binomial(n,8)/9^8 for n in range(8, 23)] # _Zerinvary Lajos_, Mar 13 2009
%o A053108 (Magma) [Binomial(n+8, 8)*9^n: n in [0..20]]; // _Vincenzo Librandi_, Oct 13 2011
%o A053108 (PARI) vector(20, n, n--; 9^n*binomial(n+8,8)) \\ _G. C. Greubel_, Aug 15 2018
%Y A053108 Cf. A053107.
%K A053108 nonn,easy
%O A053108 0,2
%A A053108 _Wolfdieter Lang_