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 A016197 #23 Jun 29 2023 15:33:23 %S A016197 0,1,23,397,6095,87781,1214423,16344637,215622815,2801832661, %T A016197 35979939623,457696700077,5777672071535,72470493235141, %U A016197 904168630965623,11229773405170717,138934529031464255,1713164078241143221 %N A016197 a(n) = 12^n - 11^n. %H A016197 Vincenzo Librandi, <a href="/A016197/b016197.txt">Table of n, a(n) for n = 0..900</a> %H A016197 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (23, -132). %F A016197 G.f.: x/((1-11x)(1-12x)). %F A016197 E.g.f.: e^(12*x)-e^(11*x). - _Mohammad K. Azarian_, Jan 14 2009 %F A016197 a(0)=0, a(n)=12*a(n-1)+11^(n-1). - _Vincenzo Librandi-, Feb 09 2011 %F A016197 a(0)=0, a(1)=1, a(n)=23*a(n-1)-132*a(n-2). - _Vincenzo Librandi_, Feb 09 2011 %t A016197 f[n_]:= 12^n - 11^n; f[Range[0, 40]] (* _Vladimir Joseph Stephan Orlovsky_, Feb 14 2011 *) %t A016197 CoefficientList[Series[x/((1 - 11 x) (1 - 12 x)), {x, 0, 30}], x] (* _Vincenzo Librandi_, Aug 03 2014 *) %o A016197 (Magma) [12^n-11^n: n in [0..40]]; // _Vincenzo Librandi_, Aug 03 2014 %o A016197 (PARI) a(n)=12^n-11^n \\ _Charles R Greathouse IV_, Aug 03 2014 %Y A016197 Cf. k^n-(k-1)^n: A000225 (k=2), A001047 (k=3), A005061 (k=4), A005060 (k=5), A005062 (k=6), A016169 (k=7), A016177 (k=8), A016185 (k=9), A016189 (k=10), A016195 (k=11), this sequence (k=12). %K A016197 nonn,easy %O A016197 0,3 %A A016197 _N. J. A. Sloane_