login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A154627 Expansion of (1-5x)/(1-8x+4x^2). 1
1, 3, 20, 148, 1104, 8240, 61504, 459072, 3426560, 25576192, 190903296, 1424921600, 10635759616, 79386390528, 592548085760, 4422839123968, 33012520648704, 246408808693760, 1839220386955264, 13728127860867072 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Hankel transform of 1,1,4,18,88,.... (see A081671).
LINKS
FORMULA
a(n) = 8*a(n-1) - 4*a(n-2), n > 1; a(0)=1, a(1)=3. [Philippe Deléham, Feb 02 2009]
MAPLE
A[0]:= 1: A[1]:= 3:
for n from 2 to 100 do A[n]:= 8*A[n-1]-4*A[n-2] od:
seq(A[n], n=0..100); # Robert Israel, Aug 10 2014
MATHEMATICA
LinearRecurrence[{8, -4}, {1, 3}, 20] (* Harvey P. Dale, Aug 10 2014 *)
CoefficientList[Series[(1 - 5 x)/(1 - 8 x + 4 x^2), {x, 0, 50}], x] (* Vincenzo Librandi, Aug 10 2014 *)
PROG
(PARI) Vec((1-5*x)/(1-8*x+4*x^2)+O(x^50)) \\ Michel Marcus, Aug 10 2014
CROSSREFS
Sequence in context: A068571 A074569 A026303 * A320350 A354495 A336283
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Jan 13 2009
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 18:16 EDT 2024. Contains 371916 sequences. (Running on oeis4.)