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.

A171480 a(n) = 6*a(n-1) - 8*a(n-2) + 4 for n > 1; a(0) = 1, a(1) = 9.

This page as a plain text file.
%I A171480 #16 Sep 27 2023 16:42:12
%S A171480 1,9,50,232,996,4124,16780,67692,271916,1089964,4364460,17467052,
%T A171480 69886636,279583404,1118407340,4473776812,17895402156,71582198444,
%U A171480 286329973420,1145322252972,4581293730476,18325184359084,73300756310700
%N A171480 a(n) = 6*a(n-1) - 8*a(n-2) + 4 for n > 1; a(0) = 1, a(1) = 9.
%C A171480 Inverse binomial transform of A016273.
%H A171480 Vincenzo Librandi, <a href="/A171480/b171480.txt">Table of n, a(n) for n = 0..500</a>
%H A171480 <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (7,-14,8).
%F A171480 a(n) = (25*4^n - 27*2^n + 8)/6.
%F A171480 G.f.: (1+x)^2/((1-x)*(1-2*x)*(1-4*x)).
%F A171480 E.g.f.: exp(x)*(8 - 27*exp(x) + 25*exp(3*x))/6. - _Stefano Spezia_, Sep 27 2023
%o A171480 (PARI) {m=23; v=concat([1, 9], vector(m-2)); for(n=3, m, v[n]=6*v[n-1]-8*v[n-2]+4); v}
%o A171480 (Magma) [(25*4^n-27*2^n+8)/6: n in [0..30]]; // _Vincenzo Librandi_, Jul 18 2011
%Y A171480 Cf. A016273 (expansion of 1/((1-2*x)*(1-3*x)*(1-5*x))), A171472, A171473.
%K A171480 nonn,easy
%O A171480 0,2
%A A171480 _Klaus Brockhaus_, Dec 09 2009