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!)
A049681 a(n) = (Lucas(2*n) - Lucas(n))/2. 2
0, 1, 2, 7, 20, 56, 152, 407, 1080, 2851, 7502, 19702, 51680, 135461, 354902, 929567, 2434320, 6374236, 16689752, 43697227, 114405500, 299525051, 784179002, 2053027082, 5374926720, 14071792681 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Create a triangle with T(n,1) = L(n-1) for L a Lucas number and the other side T(n,n) = L(2*(n-1)). Interior elements are defined as T(r,c) = T(r-1,c-1) + T(r-1,c). Half the sum of the terms in row(n)=a(n) for n=1,2,3... - J. M. Bergot, Dec 15 2012
LINKS
FORMULA
G.f.: x*(1-2*x+2*x^2)/( (1-x-x^2)*(1-3*x+x^2) ). - R. J. Mathar, Dec 17 2012
a(n) = Lucas(n)*(Lucas(n) - 1)/2 - (-1)^n = binomial(Lucas(n), 2) - (-1)^n. - Vladimir Reshetnikov, Sep 27 2016
E.g.f.: (1/2)*exp(-2*x/(1+sqrt(5)))*(-1 + exp(x))*(1 + exp(sqrt(5)*x)). - Stefano Spezia, Dec 15 2019
MAPLE
Lucas:= n -> combinat:-fibonacci(n+1)+combinat:-fibonacci(n-1):
seq((Lucas(2*n)-Lucas(n))/2, n=0..100); # Robert Israel, Sep 15 2016
MATHEMATICA
Table[(LucasL[2n] - LucasL[n])/2, {n, 0, 20}] (* Vladimir Reshetnikov, Sep 15 2016 *)
PROG
(PARI) x='x+O('x^30); concat([0], Vec(x*(1-2*x+2*x^2)/((1-x-x^2)*(1-3*x+x^2)) )) \\ G. C. Greubel, Dec 02 2017
(Magma) [(Lucas(2*n) - Lucas(n))/2: n in [0..30]]; // G. C. Greubel, Dec 02 2017
(Sage) [(lucas_number2(2*n, 1, -1) - lucas_number2(n, 1, -1))/2 for n in (0..30)] # G. C. Greubel, Dec 15 2019
(GAP) List([0..30], n-> (Lucas(1, -1, 2*n)[2] - Lucas(1, -1, n)[2])/2 ); # G. C. Greubel, Dec 15 2019
CROSSREFS
Sequence in context: A018033 A000149 A080041 * A027120 A094982 A292400
KEYWORD
nonn
AUTHOR
EXTENSIONS
Corrected by Franklin T. Adams-Watters, Oct 25 2006
Corrected by T. D. Noe, Nov 01 2006
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 06:06 EDT 2024. Contains 371918 sequences. (Running on oeis4.)