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 A095898 #17 Mar 02 2017 13:15:31 %S A095898 1,27,649,15603,375121,9018507,216819289,5212681443,125321173921, %T A095898 3012920855547,72435421707049,1741463041824723,41867548425500401, %U A095898 1006562625253834347,24199370554517524729,581791455933674427843,13987194312962703792961,336274454967038565458907 %N A095898 The (1,1)-term of the 3 X 3 matrix M^n, where M = [1,2,3 / 4,7,11 / 6,10,16]. %H A095898 Colin Barker, <a href="/A095898/b095898.txt">Table of n, a(n) for n = 1..700</a> %H A095898 Tanya Khovanova, <a href="http://www.tanyakhovanova.com/RecursiveSequences/RecursiveSequences.html">Recursive Sequences</a> %H A095898 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (24,1). %F A095898 a(n) = 24*a(n-1) + a(n-2) for n>=3; a(1)=1, a(2)=27 (follows from the minimal polynomial of the matrix M). %F A095898 G.f.: (x+3*x^2) / (1-24*x-x^2). - _Philippe Deléham_, Nov 21 2008 %F A095898 a(n) = (-12 - sqrt(145))^(-n)*(87+7*sqrt(145) + (-289-24*sqrt(145))^n*(87-7*sqrt(145))) / 58. - _Colin Barker_, Mar 02 2017 %e A095898 a(4)=15603 because M^4 = [15603,26590,42193 / 56642,96527,153169 / 82078,139874,221952]. Alternatively, a(4) = 24*649+27 = 15603. %p A095898 a[1]:=1: a[2]:=27: for n from 3 to 18 do a[n]:=24*a[n-1]+a[n-2] od: seq(a[n],n=1..18); %o A095898 (PARI) Vec(x*(1 + 3*x) / (1 - 24*x - x^2) + O(x^30)) \\ _Colin Barker_, Mar 02 2017 %Y A095898 Cf. A083412, A035513, A003622, A001950, A000201. %K A095898 nonn,easy %O A095898 1,2 %A A095898 _Gary W. Adamson_, Jun 12 2004 %E A095898 Corrected by _T. D. Noe_, Nov 07 2006 %E A095898 Edited by _N. J. A. Sloane_, Dec 16 2006