cp's OEIS Frontend

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.

A015603 a(n) = 11*a(n-1) + 9*a(n-2).

This page as a plain text file.
%I A015603 #31 Dec 30 2023 23:41:57
%S A015603 0,1,11,130,1529,17989,211640,2489941,29294111,344644690,4054738589,
%T A015603 47703926689,561235840880,6602929589881,77683348056611,
%U A015603 913943194931650,10752525276757649,126503266798718989,1488308662276727720,17509924686232475821
%N A015603 a(n) = 11*a(n-1) + 9*a(n-2).
%H A015603 Vincenzo Librandi, <a href="/A015603/b015603.txt">Table of n, a(n) for n = 0..900</a>
%H A015603 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (11,9).
%F A015603 G.f.: x/(1 - 11*x - 9*x^2). - _Zerinvary Lajos_, Apr 27 2009
%t A015603 Join[{a=0,b=1},Table[c=11*b+9*a;a=b;b=c,{n,60}]] (* _Vladimir Joseph Stephan Orlovsky_, Jan 31 2011 *)
%t A015603 LinearRecurrence[{11, 9}, {0, 1}, 30] (* _Vincenzo Librandi_, Nov 22 2012 *)
%o A015603 (Sage) [lucas_number1(n,11,-9) for n in range(0, 18)] # _Zerinvary Lajos_, Apr 27 2009
%o A015603 (Magma) [n le 2 select n-1 else 11*Self(n-1) + 9*Self(n-2): n in [1..30]]; // _Vincenzo Librandi_, Nov 22 2012
%o A015603 (PARI) x='x+O('x^30); concat([0], Vec(x/(1-11*x-9*x^2))) \\ _G. C. Greubel_, Jan 16 2018
%K A015603 nonn,easy
%O A015603 0,3
%A A015603 _Olivier Gérard_
%E A015603 G.f. adapted to the offset by _Vincenzo Librandi_, Nov 22 2012