login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A081570 Fifth binomial transform of F(n+1). 7

%I #21 Sep 08 2022 08:45:09

%S 1,6,37,233,1490,9633,62753,410926,2700349,17786985,117346714,

%T 774991289,5121849473,33865596822,223987930325,1481764925737,

%U 9803764203682,64870223394129,429263295428641,2840659771285310,18798621916707821

%N Fifth binomial transform of F(n+1).

%C Binomial transform of A081569.

%C Case k=5 of family of recurrences a(n) = (2k+1)*a(n-1) - A028387(k-1)*a(n-2), a(0)=1, a(1)=k+1.

%H Vincenzo Librandi, <a href="/A081570/b081570.txt">Table of n, a(n) for n = 0..200</a>

%H <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (11,-29).

%F a(n) = 11*a(n-1) - 29*a(n-2), a(0)=1, a(1)=6.

%F a(n) = (1/2 - sqrt(5)/10)*(11/2 - sqrt(5)/2)^n + (sqrt(5)/10 + 1/2)*(sqrt(5)/2 + 11/2)^n .

%F G.f.: (1-5*x)/(1-11*x+29*x^2).

%F a(n) = Sum_{k=0..n} A094441(n,k)*5^k. - _Philippe Deléham_, Dec 14 2009

%p seq(coeff(series((1-5*x)/(1-11*x+29*x^2), x, n+1), x, n), n = 0 .. 30); # _G. C. Greubel_, Aug 12 2019

%t CoefficientList[Series[(1-5x)/(1 -11x +29x^2), {x, 0, 30}], x] (* _Vincenzo Librandi_, Aug 09 2013 *)

%t LinearRecurrence[{11,-29},{1,6},30] (* _Harvey P. Dale_, Aug 04 2022 *)

%o (Magma) I:=[1, 6]; [n le 2 select I[n] else 11*Self(n-1)-29*Self(n-2): n in [1..30]]; // _Vincenzo Librandi_, Aug 09 2013

%o (PARI) my(x='x+O('x^30)); Vec((1-5*x)/(1-11*x+29*x^2)) \\ _G. C. Greubel_, Aug 12 2019

%o (Sage)

%o def A081570_list(prec):

%o P.<x> = PowerSeriesRing(ZZ, prec)

%o return P((1-5*x)/(1-11*x+29*x^2)).list()

%o A081570_list(30) # _G. C. Greubel_, Aug 12 2019

%o (GAP) a:=[1,6];; for n in [3..30] do a[n]:=11*a[n-1]-29*a[n-2]; od; a; # _G. C. Greubel_, Aug 12 2019

%Y Cf. A000045.

%K easy,nonn

%O 0,2

%A _Paul Barry_, Mar 22 2003

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)