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.

A171415 a(n) = 99*a(n-1) - a(n-2); a(0) = 0, a(1) = 1.

This page as a plain text file.
%I A171415 #31 Aug 05 2024 10:30:06
%S A171415 0,1,99,9800,970101,96030199,9506019600,940999910201,93149485090299,
%T A171415 9220858024029400,912771794893820301,90355186836464180399,
%U A171415 8944250725015060039200,885390466589654479700401,87644711941650778430300499,8675941091756837410120049000,858830523371985252823454550501
%N A171415 a(n) = 99*a(n-1) - a(n-2); a(0) = 0, a(1) = 1.
%C A171415 Related to Motzkin numbers.
%H A171415 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (99,-1).
%F A171415 a(n+1)^2 - a(n)^2 = a(2*n+1). - _Richard Choulet_, Dec 10 2009
%F A171415 G.f.: x/(1-99*x+x^2). - _Philippe Deléham_, Dec 09 2009
%F A171415 E.g.f.: 2*exp(99*x/2)*sinh(sqrt(9797)*x/2)/sqrt(9797). - _Stefano Spezia_, Aug 05 2024
%p A171415 a(0):=0: a(1):=1: for n from 0 to 50 do a(n+2):=99*a(n+1)-a(n): od: seq(a(n),n=0..30);
%p A171415 taylor((z/(1-99*z+z^2)),z=0,30); # _Richard Choulet_, Dec 10 2009
%t A171415 LinearRecurrence[{99,-1},{0,1},30] (* _Harvey P. Dale_, Dec 18 2015 *)
%Y A171415 Cf. A168520, A168522, A004189.
%K A171415 nonn,easy
%O A171415 0,3
%A A171415 _Mark Dols_, Dec 08 2009
%E A171415 Offset adapted to definition by _Georg Fischer_, Jun 18 2021
%E A171415 a(14)-a(16) from _Stefano Spezia_, Aug 05 2024