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 A102206 #19 Nov 03 2016 15:20:35 %S A102206 3,8,27,98,363,1352,5043,18818,70227,262088,978123,3650402,13623483, %T A102206 50843528,189750627,708158978,2642885283,9863382152,36810643323, %U A102206 137379191138,512706121227,1913445293768,7141075053843,26650854921602,99462344632563,371198523608648 %N A102206 a(0) = 3, a(1) = 8, a(n+2) = 4*a(n+1) - a(n) - 2. %H A102206 Colin Barker, <a href="/A102206/b102206.txt">Table of n, a(n) for n = 0..1000</a> %H A102206 <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (5,-5,1). %F A102206 G.f.: (2x-1)(x-3)/((1-x)(x^2-4x+1)). %F A102206 a(n) = A092184(n+1) + 2; a(n+1) - a(n) = A001834(n+1) (see comment). %F A102206 a(0)=3, a(1)=8, a(2)=27, a(n) = 5*a(n-1) - 5*a(n-2) + a(n-3). - _Harvey P. Dale_, Jul 25 2012 %F A102206 a(n) = (2+(2-sqrt(3))^(1+n)+(2+sqrt(3))^(1+n))/2. - _Colin Barker_, Nov 03 2016 %t A102206 a[0] = 3; a[1] = 8; a[n_] := a[n] = 4a[n - 1] - a[n - 2] - 2; Table[a[n], {n, 0, 23}] (* Or *) %t A102206 CoefficientList[ Series[(2x - 1)(x - 3)/((1 - x)(x^2 - 4x + 1)), {x, 0, 22}], x] (* _Robert G. Wilson v_, Jan 12 2005 *) %t A102206 LinearRecurrence[{5,-5,1},{3,8,27},30] (* _Harvey P. Dale_, Jul 25 2012 *) %o A102206 (PARI) Vec((2*x-1)*(x-3)/((1-x)*(x^2-4*x+1)) + O(x^30)) \\ _Colin Barker_, Nov 03 2016 %Y A102206 Cf. A092184, A001834, A001353, A102207. %K A102206 nonn,easy %O A102206 0,1 %A A102206 _Creighton Dement_, Dec 30 2004 %E A102206 More terms from _Robert G. Wilson v_, Jan 12 2005 %E A102206 Recurrence in the definition corrected by _R. J. Mathar_, Aug 07 2008