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 A134136 #30 Nov 12 2024 18:56:39 %S A134136 0,1,1,2,6,8,20,40,72,160,304,608,1248,2432,4928,9856,19584,39424, %T A134136 78592,157184,314880,628736,1258496,2516992,5031936,10067968,20131840, %U A134136 40263680,80535552,161054720,322125824,644251648,1288470528,2577006592,5153947648,10307895296 %N A134136 a(n) = 2*a(n-2) + 4*a(n-3), with initial terms 0, 1, 1. %H A134136 Robert Israel, <a href="/A134136/b134136.txt">Table of n, a(n) for n = 0..2991</a> %H A134136 <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (0,2,4). %F A134136 a(n) = (6*2^n - (3+i)*(-1+i)^n - (3-i)*(-1-i)^n)/20. - _Ivan Neretin_, May 27 2015 %F A134136 G.f.: (x^2+x)/(1-2*x^2-4*x^3). - _Robert Israel_, May 27 2015 %p A134136 f:= gfun:-rectoproc({a(n)=2*a(n-2)+4*a(n-3), a(0)=0,a(1)=1,a(2)=1},a(n),remember): %p A134136 seq(f(n),n=0..100); # _Robert Israel_, May 27 2015 %t A134136 Nest[Append[#, 2 #[[-2]] + 4 #[[-3]]] &, {0, 1, 1}, 15] (* _Ivan Neretin_, May 27 2015 *) %t A134136 CoefficientList[Series[x (1 + x)/((1 - 2 x) (2 x^2 + 2 x + 1)), {x, 0, 40}], x] (* _Vincenzo Librandi_, May 28 2015 *) %o A134136 (Magma) [n le 3 select Floor(n/2) else 2*Self(n-2)+4*Self(n-3): n in [1..40]]; // _Vincenzo Librandi_, May 28 2015 %Y A134136 Cf. A038521. %K A134136 nonn,easy %O A134136 0,4 %A A134136 _Paul Curtz_, Jan 29 2008 %E A134136 More terms from _Robert Israel_, May 27 2015