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 A084128 #51 Dec 03 2023 12:34:45 %S A084128 1,2,12,56,272,1312,6336,30592,147712,713216,3443712,16627712, %T A084128 80285696,387653632,1871757312,9037643776,43637604352,210700992512, %U A084128 1017354387456,4912221519872,23718303629312,114522100596736,552961616904192,2669934870003712 %N A084128 a(n) = 4*a(n-1) + 4*a(n-2), a(0)=1, a(1)=2. %C A084128 Original name was: Generalized Fibonacci sequence. %C A084128 Binomial transform of A084058. %H A084128 Vincenzo Librandi, <a href="/A084128/b084128.txt">Table of n, a(n) for n = 0..1000</a> %H A084128 Martin Burtscher, Igor Szczyrba, and Rafał Szczyrba, <a href="http://www.emis.de/journals/JIS/VOL18/Szczyrba/sz3.html">Analytic Representations of the n-anacci Constants and Generalizations Thereof</a>, Journal of Integer Sequences, Vol. 18 (2015), Article 15.4.5. %H A084128 Tanya Khovanova, <a href="http://www.tanyakhovanova.com/RecursiveSequences/RecursiveSequences.html">Recursive Sequences</a> %H A084128 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (4,4). %F A084128 a(n) = 2^n * A001333(n). %F A084128 G.f.: (1-2*x)/(1-4*x-4*x^2). %F A084128 a(n) = 4*a(n-1) + 4*a(n-2), a(0)=1, a(1)=2. %F A084128 a(n) = (2 + 2*sqrt(2))^n/2 + (2 - 2*sqrt(2))^n/2. %F A084128 E.g.f.: exp(2*x)*cosh(2*x*sqrt(2)). %F A084128 From _Johannes W. Meijer_, Aug 01 2010: (Start) %F A084128 Lim_{k->infinity} a(n+k)/a(k) = A084128(n) + 2*A057087(n-1)*sqrt(2). %F A084128 Lim_{n->infinity} A084128(n)/A057087(n-1) = sqrt(2). (End) %F A084128 a(n) = Sum_{k=0..n} A201730(n,k)*7^k. - _Philippe Deléham_, Dec 06 2011 %F A084128 G.f.: G(0)/2, where G(k)= 1 + 1/(1 - x*(4*k-2)/(x*(4*k+2) - 1/G(k+1))); (continued fraction). - _Sergei N. Gladkovskii_, May 27 2013 %F A084128 a(n) = 2^(n-1)*A002203(n). - _Vladimir Reshetnikov_, Oct 07 2016 %p A084128 a:=proc(n) option remember; if n=0 then 1 elif n=1 then 2 else %p A084128 4*a(n-1)+4*a(n-2); fi; end: seq(a(n), n=0..40); # _Wesley Ivan Hurt_, Jan 31 2017 %p A084128 a := n -> (2*I)^n*ChebyshevT(n, -I): %p A084128 seq(simplify(a(n)), n = 0..23); # _Peter Luschny_, Dec 03 2023 %t A084128 CoefficientList[Series[(2 z - 1)/(4 z^2 + 4 z - 1), {z, 0, 100}], z] (* _Vladimir Joseph Stephan Orlovsky_, Jul 01 2011 *) %t A084128 Table[2^(n-1) LucasL[n, 2], {n, 0, 20}] (* _Vladimir Reshetnikov_, Oct 07 2016 *) %t A084128 LinearRecurrence[{4,4},{1,2},30] (* _Harvey P. Dale_, Mar 01 2018 *) %o A084128 (PARI) a(n)=if(n<0,0,polsym(4+4*x-x^2,n)[n+1]/2) %o A084128 (Sage) [lucas_number2(n,4,-4)/2 for n in range(0, 23)] # _Zerinvary Lajos_, May 14 2009 %o A084128 (Magma) [2^(n-1)*Evaluate(DicksonFirst(n,-1), 2): n in [0..40]]; // _G. C. Greubel_, Oct 13 2022 %Y A084128 Cf. A001333 A001541, A002203, A057087, A084058, A084128, A201730. %Y A084128 Appears in A086346, A086347 and A086348. - _Johannes W. Meijer_, Aug 01 2010 %K A084128 nonn,easy %O A084128 0,2 %A A084128 _Paul Barry_, May 16 2003