A204450
2*A203579 - A204449. Difference between the exponential convolution of A000032 (Lucas) with itself and the corresponding exponential half-convolution.
Original entry on oeis.org
0, 2, 6, 17, 30, 177, 417, 1857, 4302, 19457, 47731, 203777, 509769, 2134017, 5462701, 22347777, 58104062, 234029057, 616919457, 2450784257, 6533317815, 25664946177, 69085604341, 268766806017, 729558799305, 2814562533377
Offset: 0
With A000032 = {2, 1, 3, 4, 7, 11, ...}
a(4) = 4*4*1 + 1*7*2 = 30.
a(5) = 10*4*3 + 5*7*1 + 1*11*2 = 177.
A014335
Exponential convolution of Fibonacci numbers with themselves (divided by 2).
Original entry on oeis.org
0, 0, 1, 3, 11, 35, 115, 371, 1203, 3891, 12595, 40755, 131891, 426803, 1381171, 4469555, 14463795, 46805811, 151466803, 490156851, 1586180915, 5132989235, 16610702131, 53753361203, 173949530931, 562912506675, 1821623137075, 5894896300851, 19076285150003
Offset: 0
-
[(2^n*Lucas(n)-2)/10: n in [0..40]]; // G. C. Greubel, Jan 06 2023
-
a[0]:=0:a[1]:=0:for n from 2 to 50 do a[n]:=2*a[n-1]+4*a[n-2]+1 od: seq(a[n], n=0..29); # Zerinvary Lajos, Dec 14 2008
# second Maple program:
a:= n-> (<<0|1|0>, <0|0|1>, <-4|2|3>>^n)[1,3]:
seq(a(n), n=0..30); # Alois P. Heinz, Oct 04 2016
-
LinearRecurrence[{3,2,-4}, {0,0,1}, 41] (* Vladimir Joseph Stephan Orlovsky, Feb 01 2011 *)
Table[(2^n LucasL[n] - 2)/10, {n, 0, 20}] (* Vladimir Reshetnikov, Oct 06 2016 *)
-
[(2^n*lucas_number2(n,1,-1) -2)/10 for n in range(41)] # G. C. Greubel, Jan 06 2023
A204449
Exponential (or binomial) half-convolution of A000032 (Lucas) with itself.
Original entry on oeis.org
4, 2, 8, 17, 84, 177, 737, 1857, 7732, 19457, 78223, 203777, 809145, 2134017, 8349013, 22347777, 86533892, 234029057, 897748577, 2450784257, 9328491339, 25664946177, 97021416973, 268766806017, 1009936510009, 2814562533377
Offset: 0
With A000032 = {2, 1, 3, 4, 7, 11,...}
a(4) = 1*2*7 + 4*1*4 + 6*3*3 = 84,
a(5) = 1*2*11 + 5*1*7 + 10*3*4 = 177.
-
Table[Sum[Binomial[n, k]*LucasL[k]*LucasL[n-k], {k, 0, Floor[n/2]}], {n, 0, 30}] (* Vaclav Kotesovec, Sep 25 2019 *)
Showing 1-3 of 3 results.
Comments