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!)
A093132 Third binomial transform of Fibonacci(3n+2). 1
1, 8, 60, 440, 3200, 23200, 168000, 1216000, 8800000, 63680000, 460800000, 3334400000, 24128000000, 174592000000, 1263360000000, 9141760000000, 66150400000000, 478668800000000, 3463680000000000, 25063424000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: (1-2*x)/(1-10*x+20*x^2).
a(n) = ( (5 + 3*sqrt(5))*(5 + sqrt(5))^n + (5 - 3*sqrt(5))*(5 - sqrt(5))^n)/10.
a(n) = 2^n*A039717(n).
a(2*n) = 4^n*5^n*Fibonacci(2*n+2), a(2*n+1) = 2^(2*n+1)*5^n*Lucas(2*n+3). - G. C. Greubel, Dec 27 2019
MAPLE
seq(coeff(series((1-2*x)/(1-10*x+20*x^2), x, n+1), x, n), n = 0..30); # G. C. Greubel, Dec 27 2019
MATHEMATICA
Table[If[EvenQ[n], 2^n*5^(n/2)*Fibonacci[n+2], 2^n*5^((n-1)/2)*LucasL[n+2]], {n, 0, 30}] (* G. C. Greubel, Dec 27 2019 *)
PROG
(PARI) my(x='x+O('x^30)); Vec((1-2*x)/(1-10*x+20*x^2)) \\ G. C. Greubel, Dec 27 2019
(Magma) I:=[1, 8]; [n le 2 select I[n] else 10*(Self(n-1) - 2*Self(n-2)): n in [1..30]]; // G. C. Greubel, Dec 27 2019
(Sage)
def A093132_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P( (1-2*x)/(1-10*x+20*x^2) ).list()
A093132_list(30) # G. C. Greubel, Dec 27 2019
(GAP) a:=[1, 8];; for n in [2..30] do a[n]:=10*(a[n-1]-2*a[n-2]); od; a; # G. C. Greubel, Dec 27 2019
CROSSREFS
Sequence in context: A002927 A274800 A126640 * A094169 A129325 A285391
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Mar 23 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 24 09:18 EDT 2024. Contains 371935 sequences. (Running on oeis4.)