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 A135032 #32 Sep 08 2022 08:45:32 %S A135032 0,1,6,40,264,1744,11520,76096,502656,3320320,21932544,144876544, %T A135032 956989440,6321442816,41756614656,275825459200,1821979213824, %U A135032 12035177119744,79498979573760,525134585921536,3468803433824256 %N A135032 a(n) = 6*a(n-1) + 4*a(n-2). %C A135032 For n>=2, a(n) equals the permanent of the (n-1)X(n-1) tridiagonal matrix with 6's along the main diagonal, and 2's along the superdiagonal and the subdiagonal. - _John M. Campbell_, Jul 19 2011 %H A135032 G. C. Greubel, <a href="/A135032/b135032.txt">Table of n, a(n) for n = 0..1000</a> %H A135032 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (6,4). %F A135032 a(0)=0; a(1)=1; a(n) = 2*(3*a(n-1) + 2*a(n-2)). %F A135032 a(n) = 1/(2*sqrt(13))*( (3 + sqrt(13))^n - (3 - sqrt(13))^n ). %F A135032 from _R. J. Mathar_, Oct 15 2012: (Start) %F A135032 a(n+1) = 2^n*A006190(n+1). %F A135032 G.f.: x /( 1 - 6*x - 4*x^2 ). (End) %F A135032 E.g.f.: (1/sqrt(13))*exp(3*x)*sinh(sqrt(13)*x). - _G. C. Greubel_, Sep 17 2016 %t A135032 Join[{a=0,b=1},Table[c=6*b+4*a;a=b;b=c,{n,100}]] (* _Vladimir Joseph Stephan Orlovsky_, Jan 16 2011 *) %t A135032 LinearRecurrence[{6,4}, {0,1}, 25] (* _G. C. Greubel_, Sep 17 2016 *) %o A135032 (Sage) [lucas_number1(n,6,-4) for n in range(0, 21)] # _Zerinvary Lajos_, Apr 24 2009 %o A135032 (Magma) [n le 2 select n-1 else 6*Self(n-1)+4*Self(n-2): n in [1..35]]; // _Vincenzo Librandi_, Sep 18 2016 %o A135032 (PARI) x='x+O('x^30); concat([0], Vec(x/(1-6*x-4*x^2))) \\ _G. C. Greubel_, Jan 24 2018 %K A135032 nonn,easy %O A135032 0,3 %A A135032 _Rolf Pleisch_, Feb 10 2008, corrected Feb 14 2008 %E A135032 More terms from Alexis Olson (AlexisOlson(AT)gmail.com), Nov 15 2008