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!)
A236144 a(n) = F(floor( (n+3)/2 )) * L(floor( (n+2)/2 )) where F=Fibonacci and L=Lucas numbers. 1
2, 2, 1, 2, 6, 9, 12, 20, 35, 56, 88, 143, 234, 378, 609, 986, 1598, 2585, 4180, 6764, 10947, 17712, 28656, 46367, 75026, 121394, 196417, 317810, 514230, 832041, 1346268, 2178308, 3524579, 5702888, 9227464, 14930351, 24157818, 39088170, 63245985, 102334154 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
G.f.: (2 - x^2 - x^3) / (1 - x - x^3 - x^4) = (1 - x) * (2 + 2*x + x^2) / ((1 + x^2) * (1 - x - x^2)).
a(n) = a(n-1) + a(n-3) + a(n-4) for all n in Z.
0 = a(n)*a(n+2) + a(n+1)*(+a(n+2) -a(n+3)) for all n in Z.
a(n) = A115008(n+2) - A115008(n+1).
a(n) = A115339(n) * A115339(n-1).
a(2*n - 1) = F(n+1) * L(n-1) = A128535(n+1). a(2*n) = F(n+1) * L(n) = A128534(n+1).
a(n) = A000045(n+1)+A057077(n). - R. J. Mathar, Sep 24 2021
EXAMPLE
G.f. = 2 + 2*x + x^2 + 2*x^3 + 6*x^4 + 9*x^5 + 12*x^6 + 20*x^7 + 35*x^8 + ...
MATHEMATICA
a[ n_] := Fibonacci[ Quotient[ n + 3, 2]] LucasL[ Quotient[ n, 2]];
CoefficientList[Series[(2-x^2-x^3)/(1-x-x^3-x^4), {x, 0, 60}], x] (* G. C. Greubel, Aug 07 2018 *)
PROG
(PARI) {a(n) = fibonacci( (n+3)\2 ) * (fibonacci( n\2+1 ) + fibonacci( n\2-1 ))};
(PARI) x='x+O('x^60); Vec((2-x^2-x^3)/(1-x-x^3-x^4) \\ G. C. Greubel, Aug 07 2018
(Magma) m:=60; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!((2-x^2-x^3)/(1-x-x^3-x^4)); // G. C. Greubel, Aug 07 2018
CROSSREFS
Sequence in context: A283170 A368836 A336823 * A226328 A307599 A162663
KEYWORD
nonn,easy
AUTHOR
Michael Somos, Jan 19 2014
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 16 05:35 EDT 2024. Contains 371697 sequences. (Running on oeis4.)