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.
%I A053112 #20 Sep 08 2022 08:45:00 %S A053112 1,45,1485,40095,938223,19702683,379980315,6839645670,116273976390, %T A053112 1883638417518,29282015399598,439230230993970,6385731819835410, %U A053112 90312492880529370,1246312401751305306,16825217423642621631 %N A053112 Expansion of (-1 + 1/(1-9*x)^9)/(81*x); related to A053108. %H A053112 G. C. Greubel, <a href="/A053112/b053112.txt">Table of n, a(n) for n = 0..400</a> %H A053112 <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 A053112 G.f.: (-1 + 1/(1-9*x)^9)/(81*x). %F A053112 a(n) = 9^(n-1)*binomial(n+9, 8). %F A053112 a(0)=1, a(1)=45, a(2)=1485, a(3)=40095, a(4)=938223, a(5)=19702683, a(6)=379980315, a(7)=6839645670, a(8)=116273976390, 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). - _Harvey P. Dale_, Apr 27 2013 %t A053112 CoefficientList[Series[(-1+1/(1-9*x)^9)/(81*x),{x,0,30}],x] (* or *) LinearRecurrence[{81,-2916,61236,-826686,7440174,-44641044,172186884,-387420489,387420489}, {1,45,1485,40095,938223,19702683, 379980315, 6839645670,116273976390},20] (* _Harvey P. Dale_, Apr 27 2013 *) %t A053112 Table[9^(n - 1)*Binomial[n + 9, 8], {n, 0, 30}] (* _G. C. Greubel_, Aug 16 2018 *) %o A053112 (PARI) vector(30,n,n--; 9^(n-1)*binomial(n+9, 8)) \\ _G. C. Greubel_, Aug 16 2018 %o A053112 (Magma) [9^(n-1)*Binomial(n+9, 8): n in [0..30]]; // _G. C. Greubel_, Aug 16 2018 %Y A053112 Cf. A053108, A053110 - A053113. %Y A053112 Without signs: A078812. With zeros: A049310. Cf. A008310 (T(n, x)), A008312 (U(n, x)). %K A053112 easy,nonn %O A053112 0,2 %A A053112 _Wolfdieter Lang_