A146005 a(n) = n*Lucas(n).
0, 1, 6, 12, 28, 55, 108, 203, 376, 684, 1230, 2189, 3864, 6773, 11802, 20460, 35312, 60707, 104004, 177631, 302540, 513996, 871266, 1473817, 2488368, 4194025, 7057518, 11858508, 19898116, 33345679, 55814940, 93320819, 155867104
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..1000
- Index entries for linear recurrences with constant coefficients, signature (2,1,-2,-1).
Programs
-
Magma
I:=[0, 1, 6, 12]; [n le 4 select I[n] else 2*Self(n-1) + Self(n-2) - 2*Self(n-3) - Self(n-4): n in [1..40]]; // Vincenzo Librandi, Dec 13 2012
-
Mathematica
Table[LucasL[n, 1]*n, {n, 0, 36}] (* Zerinvary Lajos, Jul 09 2009 *) CoefficientList[Series[x * (1 + 4*x - x^2)/(1 - x - x^2)^2, {x, 0, 40}], x] (* Vincenzo Librandi, Dec 13 2012 *) LinearRecurrence[{2,1,-2,-1},{0,1,6,12},40] (* Harvey P. Dale, Apr 03 2013 *)