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!)
A192875 Coefficient of x in the reduction by (x^2 -> x + 1) of the polynomial p(n,x) given in Comments. 3

%I #17 Sep 08 2022 08:45:58

%S 0,1,3,11,37,119,391,1257,4087,13195,42757,138271,447615,1448249,

%T 4687071,15166963,49082501,158832391,513995543,1663319433,5382623015,

%U 17418520571,56367538373,182409150671,590288468367,1910213517529

%N Coefficient of x in the reduction by (x^2 -> x + 1) of the polynomial p(n,x) given in Comments.

%C The polynomial p(n,x) is defined by p(0,x) = 1, p(1,x) = x, and p(n,x) = x*p(n-1,x) + 2*(x^2)*p(n-1,x) + 1. See A192872.

%H G. C. Greubel, <a href="/A192875/b192875.txt">Table of n, a(n) for n = 0..1000</a>

%H <a href="/index/Rec#order_05">Index entries for linear recurrences with constant coefficients</a>, signature (2,6,-5,-6,4).

%F a(n) = 2*a(n-1) + 6*a(n-2) - 5*a(n-3) - 6*a(n-4) + 4*a(n-5).

%F G.f.: x*(1+2*x)*(1-x+x^2) / ( (1-x)*(1+x-x^2)*(1-2*x-4*x^2)). - _R. J. Mathar_, May 06 2014

%p seq(coeff(series(x*(1+2*x)*(1-x+x^2)/((1-x)*(1+x-x^2)*(1-2*x-4*x^2)),x,n+1), x, n), n = 0 .. 30); # _Muniru A Asiru_, Jan 08 2019

%t (See A192874.)

%t LinearRecurrence[{2,6,-5,-6,4}, {0,1,3,11,37}, 30] (* _G. C. Greubel_, Jan 08 2019 *)

%o (PARI) my(x='x+O('x^30)); concat([0], Vec(x*(1+2*x)*(1-x+x^2)/((1-x)*(1+ x-x^2)*(1-2*x-4*x^2)))) \\ _G. C. Greubel_, Jan 08 2019

%o (Magma) m:=30; R<x>:=PowerSeriesRing(Integers(), m); [0] cat Coefficients(R!( x*(1+2*x)*(1-x+x^2)/((1-x)*(1+ x-x^2)*(1-2*x-4*x^2)) )); // _G. C. Greubel_, Jan 08 2019

%o (Sage) (x*(1+2*x)*(1-x+x^2)/((1-x)*(1+ x-x^2)*(1-2*x-4*x^2))).series(x, 20).coefficients(x, sparse=False) # _G. C. Greubel_, Jan 08 2019

%o (GAP) a:=[0,1,3,11,37];; for n in [6..30] do a[n]:=2*a[n-1]+6*a[n-2] - 5*a[n-3]-6*a[n-4]+4*a[n-5]; od; a; # _G. C. Greubel_, Jan 08 2019

%Y Cf. A192872, A192874.

%K nonn

%O 0,3

%A _Clark Kimberling_, Jul 11 2011

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 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)