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!)
A099841 Expansion of (1-16*x)/(1-20*x+80*x^2). 2
1, 4, 0, -320, -6400, -102400, -1536000, -22528000, -327680000, -4751360000, -68812800000, -996147200000, -14417920000000, -208666624000000, -3019898880000000, -43704647680000000, -632501043200000000, -9153649049600000000, -132472897536000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Tenth binomial transform of A099839. Fifteenth binomial transform of A099840.
LINKS
FORMULA
G.f.: (1-16*x)/(1-20*x+80*x^2).
a(n) = (10 - 2*sqrt(5))^n*(1/2 + 3*sqrt(5)/10) + (10 + 2*sqrt(5))^n*(1/2 - 3*sqrt(5)/10).
a(n) = 20*a(n-1) - 80*a(n-2); a(0)=1, a(1)=4. - Harvey P. Dale, Jun 04 2013
a(n) = 2^(2*n-1)*5^((n-1)/2)*(-sqrt(5)*(1+(-1)^n)*Fibonacci(n-2) - (1 - (-1)^n)*Lucas(n-2)). - G. C. Greubel, Apr 21 2023
MATHEMATICA
CoefficientList[Series[(1-16x)/(1-20x+80x^2), {x, 0, 30}], x] (* or *) LinearRecurrence[{20, -80}, {1, 4}, 30] (* Harvey P. Dale, Jun 04 2013 *)
PROG
(Magma) [n le 2 select 3*n-2 else 20*(Self(n-1) - 4*Self(n-2)): n in [1..41]]; // G. C. Greubel, Apr 21 2023
(SageMath)
def A099841(n): return 4^n*5^((n-1)/2)*(-sqrt(5)*((n-1)%2)*fibonacci(n-2) - (n%2)*lucas_number2(n-2, 1, -1))
[A099841(n) for n in range(41)] # G. C. Greubel, Apr 21 2023
CROSSREFS
Sequence in context: A119010 A255018 A176050 * A013452 A013453 A012688
KEYWORD
easy,sign
AUTHOR
Paul Barry, Oct 27 2004
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 18 20:26 EDT 2024. Contains 371781 sequences. (Running on oeis4.)