This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A033818 #20 Sep 08 2022 08:44:51 %S A033818 3,5,9,14,22,34,53,83,131,208,332,532,855,1377,2221,3586,5794,9366, %T A033818 15145,24495,39623,64100,103704,167784,271467,439229,710673,1149878, %U A033818 1860526,3010378,4870877,7881227,12752075,20633272,33385316,54018556,87403839,141422361,228826165,370248490 %N A033818 Convolution of natural numbers n >= 1 with Lucas numbers L(k) for k >= -2. %H A033818 G. C. Greubel, <a href="/A033818/b033818.txt">Table of n, a(n) for n = 1..1000</a> %H A033818 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (3,-2,-1,1). %F A033818 a(n) = L(1)*(F(n+1) - 1) + L(0)*F(n) - L(-1)*n, F(n): Fibonacci (A000045), L(n): Lucas (A000032) with L(-n) = (-1)^n*L(n). %F A033818 G.f.: x*(3-4*x)/((1-x-x^2)*(1-x)^2). %F A033818 a(n) = Lucas(n+1) + n - 1. - _G. C. Greubel_, Jun 01 2019 %t A033818 LinearRecurrence[{3,-2,-1,1}, {3,5,9,14}, 50] (* _Vladimir Joseph Stephan Orlovsky_, Jan 28 2011, modified by _G. C. Greubel_, Jun 01 2019 *) %t A033818 Table[LucasL[n+1] +n-1, {n,1,50}] (* _G. C. Greubel_, Jun 01 2019 *) %o A033818 (PARI) {a(n) = fibonacci(n+2) + fibonacci(n) + n-1}; \\ _G. C. Greubel_, Jun 01 2019 %o A033818 (Magma) [Lucas(n+1) +n-1: n in [1..50]]; // _G. C. Greubel_, Jun 01 2019 %o A033818 (Sage) [lucas_number2(n+1,1,-1) +n-1 for n in (1..50)] # _G. C. Greubel_, Jun 01 2019 %o A033818 (GAP) List([1..50], n-> Lucas(1,-1,n+1)[2] +n-1) # _G. C. Greubel_, Jun 01 2019 %Y A033818 Cf. A000032, A000045, A023537, A023548, A033811. %K A033818 easy,nonn %O A033818 1,1 %A A033818 _Wolfdieter Lang_ %E A033818 Terms a(31) onward added by _G. C. Greubel_, Jun 01 2019