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!)
A052949 Expansion of (2-4*x+x^3)/((1-x)*(1-2*x-x^2+x^3)). 2

%I #22 Sep 08 2022 08:44:59

%S 2,2,4,7,15,32,71,158,354,794,1783,4005,8998,20217,45426,102070,

%T 229348,515339,1157955,2601900,5846415,13136774,29518062,66326482,

%U 149034251,334876921,752461610,1690765889,3799116466,8536537210,19181424996

%N Expansion of (2-4*x+x^3)/((1-x)*(1-2*x-x^2+x^3)).

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

%H INRIA Algorithms Project, <a href="http://ecs.inria.fr/services/structure?nbr=1008">Encyclopedia of Combinatorial Structures 1008</a>

%H <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (3,-1,-2,1).

%F G.f.: (2 -4*x +x^3)/((1-x)*(1 -2*x -x^2 +x^3)).

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

%F a(n) = A006356(n-1) + 1, n>0.

%F a(n) = 1 + Sum_{alpha=RootOf(1-2*z-z^2+z^3)} (1/7)*(1 + 2*alpha - alpha^2)*alpha^(-1-n).

%p spec:= [S,{S=Union(Sequence(Prod(Union(Sequence(Z),Z),Z)),Sequence(Z))}, unlabeled ]: seq(combstruct[count ](spec,size=n), n=0..20);

%p seq(coeff(series((2-4*x+x^3)/((1-x)*(1-2*x-x^2+x^3)), x, n+1), x, n), n = 0..40); # _G. C. Greubel_, Oct 21 2019

%t LinearRecurrence[{3,-1,-2,1}, {2,2,4,7}, 40] (* _G. C. Greubel_, Oct 21 2019 *)

%o (PARI) my(x='x+O('x^40)); Vec((2-4*x+x^3)/((1-x)*(1-2*x-x^2+x^3))) \\ _G. C. Greubel_, Oct 21 2019

%o (Magma) R<x>:=PowerSeriesRing(Integers(), 40); Coefficients(R!( (2-4*x+x^3)/((1-x)*(1-2*x-x^2+x^3)) )); // _G. C. Greubel_, Oct 21 2019

%o (Sage)

%o def A052949_list(prec):

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

%o return P((2-4*x+x^3)/((1-x)*(1-2*x-x^2+x^3))).list()

%o A052949_list(40) # _G. C. Greubel_, Oct 21 2019

%o (GAP) a:=[2,2,4,7];; for n in [5..40] do a[n]:=3*a[n-1]-a[n-2]-2*a[n-3] +a[n-4]; od; a; # _G. C. Greubel_, Oct 21 2019

%Y Cf. A006356.

%K easy,nonn

%O 0,1

%A encyclopedia(AT)pommard.inria.fr, Jan 25 2000

%E More terms from _James A. Sellers_, Jun 05 2000

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 23 06:04 EDT 2024. Contains 371906 sequences. (Running on oeis4.)