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.

A106569 a(n) = 5*a(n-1) + 3*a(n-2), where a(0) = 0, a(1) = 3.

This page as a plain text file.
%I A106569 #22 Jan 01 2024 11:38:17
%S A106569 0,3,15,84,465,2577,14280,79131,438495,2429868,13464825,74613729,
%T A106569 413463120,2291156787,12696173295,70354336836,389860204065,
%U A106569 2160364030833,11971400766360,66338095924299,367604681920575
%N A106569 a(n) = 5*a(n-1) + 3*a(n-2), where a(0) = 0, a(1) = 3.
%H A106569 G. C. Greubel, <a href="/A106569/b106569.txt">Table of n, a(n) for n = 0..1000</a>
%H A106569 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (5,3).
%F A106569 a(n) = 5*a(n-1) + 3*a(n-2), a(0) = 0, a(1) = 3.
%F A106569 a(n) = 3*A015536(n).
%F A106569 G.f.: 3*x/(1 - 5*x - 3*x^2). - _G. C. Greubel_, Sep 07 2021
%p A106569 a[0]:=0: a[1]:=3: for n from 2 to 23 do a[n]:= 5*a[n-1]+3*a[n-2] od: seq(a[n], n=0..23);
%t A106569 LinearRecurrence[{5,3}, {0,3}, 40] (* _G. C. Greubel_, Sep 07 2021 *)
%o A106569 (Magma) [n le 2 select 3*(n-1) else 5*Self(n-1) + 3*Self(n-2): n in [1..41]]; // _G. C. Greubel_, Sep 07 2021
%o A106569 (Sage) [3*lucas_number1(n,5,-3) for n in (0..40)] # _G. C. Greubel_, Sep 07 2021
%Y A106569 Cf. A015536.
%K A106569 nonn,easy,less
%O A106569 0,2
%A A106569 _Roger L. Bagula_, May 30 2005
%E A106569 Edited by _N. J. A. Sloane_, Apr 30 2006
%E A106569 New (corrected) name by _G. C. Greubel_, Sep 07 2021