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.

A154627 Expansion of (1-5x)/(1-8x+4x^2).

This page as a plain text file.
%I A154627 #28 Jan 01 2024 08:34:18
%S A154627 1,3,20,148,1104,8240,61504,459072,3426560,25576192,190903296,
%T A154627 1424921600,10635759616,79386390528,592548085760,4422839123968,
%U A154627 33012520648704,246408808693760,1839220386955264,13728127860867072
%N A154627 Expansion of (1-5x)/(1-8x+4x^2).
%C A154627 Hankel transform of 1,1,4,18,88,.... (see A081671).
%H A154627 Vincenzo Librandi, <a href="/A154627/b154627.txt">Table of n, a(n) for n = 0..1000</a>
%H A154627 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (8,-4).
%F A154627 a(n) = 8*a(n-1) - 4*a(n-2), n > 1; a(0)=1, a(1)=3. [_Philippe Deléham_, Feb 02 2009]
%p A154627 A[0]:= 1: A[1]:= 3:
%p A154627 for n from 2 to 100 do A[n]:= 8*A[n-1]-4*A[n-2] od:
%p A154627 seq(A[n],n=0..100); # _Robert Israel_, Aug 10 2014
%t A154627 LinearRecurrence[{8,-4},{1,3},20] (* _Harvey P. Dale_, Aug 10 2014 *)
%t A154627 CoefficientList[Series[(1 - 5 x)/(1 - 8 x + 4 x^2), {x, 0, 50}], x] (* _Vincenzo Librandi_, Aug 10 2014 *)
%o A154627 (PARI) Vec((1-5*x)/(1-8*x+4*x^2)+O(x^50)) \\ _Michel Marcus_, Aug 10 2014
%K A154627 easy,nonn
%O A154627 0,2
%A A154627 _Paul Barry_, Jan 13 2009