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 A361293 #26 Dec 16 2023 11:43:03 %S A361293 0,1,20,310,4400,60100,806000,10711000,141680000,1869610000, %T A361293 24641000000,324555100000,4273412000000,56258281000000, %U A361293 740558540000000,9747925510000000,128308241600000000,1688851536100000000,22229288978000000000,292589141311000000000 %N A361293 a(n) = 20 * a(n-1) - 90 * a(n-2) for n>1, with a(0)=0, a(1)=1. %H A361293 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (20,-90). %F A361293 a(n) = ( (10 + sqrt(10))^n - (10 - sqrt(10))^n )/(2 * sqrt(10)). %F A361293 a(n) = Sum_{k=0..floor((n-1)/2)} 10^(n-1-k) * binomial(n,2*k+1). %F A361293 G.f.: x/(1 - 20 * x + 90 * x^2). %F A361293 E.g.f.: exp(10 * x) * sinh(sqrt(10) * x) / sqrt(10). %t A361293 LinearRecurrence[{20,-90},{0,1},20] (* _Harvey P. Dale_, Dec 16 2023 *) %o A361293 (PARI) a(n) = polcoef(lift(Mod('x, ('x-10)^2-10)^n), 1); %o A361293 (PARI) my(N=20, x='x+O('x^N)); concat (0, Vec(x/(1-20*x+90*x^2))) %o A361293 (PARI) my(N=20, x='x+O('x^N)); concat (0, apply(round, Vec(serlaplace(exp(10*x)*sinh(sqrt(10)*x)/sqrt(10))))) %Y A361293 Column k=10 of A361290. %Y A361293 Cf. A289414. %K A361293 nonn,easy %O A361293 0,3 %A A361293 _Seiichi Manyama_, Mar 12 2023