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.

A192951 Coefficient of x in the reduction by x^2 -> x+1 of the polynomial p(n,x) defined at Comments.

This page as a plain text file.
%I A192951 #33 Sep 08 2022 08:45:58
%S A192951 0,1,3,9,20,40,74,131,225,379,630,1038,1700,2773,4511,7325,11880,
%T A192951 19252,31182,50487,81725,132271,214058,346394,560520,906985,1467579,
%U A192951 2374641,3842300,6217024,10059410,16276523,26336025,42612643,68948766
%N A192951 Coefficient of x in the reduction by x^2 -> x+1 of the polynomial p(n,x) defined at Comments.
%C A192951 The titular polynomials are defined recursively:  p(n,x) = x*p(n-1,x) + 3n - 1, with p(0,x)=1.  For an introduction to reductions of polynomials by substitutions such as x^2 -> x+1, see A192232 and A192744.
%C A192951 ...
%C A192951 The list of examples at A192744 is extended here; the recurrence is given by p(n,x) = x*p(n-1,x) + v(n), with p(0,x)=1, and the reduction of p(n,x) by x^2 -> x+1 is represented by u1 + u2*x:
%C A192951 ...
%C A192951 If v(n)=        n, then u1=A001595, u2=A104161.
%C A192951 If v(n)=      n-1, then u1=A001610, u2=A066982.
%C A192951 If v(n)=     3n-1, then u1=A171516, u2=A192951.
%C A192951 If v(n)=     3n-2, then u1=A192746, u2=A192952.
%C A192951 If v(n)=     2n-1, then u1=A111314, u2=A192953.
%C A192951 If v(n)=      n^2, then u1=A192954, u2=A192955.
%C A192951 If v(n)=   -1+n^2, then u1=A192956, u2=A192957.
%C A192951 If v(n)=    1+n^2, then u1=A192953, u2=A192389.
%C A192951 If v(n)=   -2+n^2, then u1=A192958, u2=A192959.
%C A192951 If v(n)=    2+n^2, then u1=A192960, u2=A192961.
%C A192951 If v(n)=    n+n^2, then u1=A192962, u2=A192963.
%C A192951 If v(n)=   -n+n^2, then u1=A192964, u2=A192965.
%C A192951 If v(n)= n(n+1)/2, then u1=A030119, u2=A192966.
%C A192951 If v(n)= n(n-1)/2, then u1=A192967, u2=A192968.
%C A192951 If v(n)= n(n+3)/2, then u1=A192969, u2=A192970.
%C A192951 If v(n)=     2n^2, then u1=A192971, u2=A192972.
%C A192951 If v(n)=   1+2n^2, then u1=A192973, u2=A192974.
%C A192951 If v(n)=  -1+2n^2, then u1=A192975, u2=A192976.
%C A192951 If v(n)=  1+n+n^2, then u1=A027181, u2=A192978.
%C A192951 If v(n)=  1-n+n^2, then u1=A192979, u2=A192980.
%C A192951 If v(n)=  (n+1)^2, then u1=A001891, u2=A053808.
%C A192951 If v(n)=  (n-1)^2, then u1=A192981, u2=A192982.
%H A192951 Vincenzo Librandi, <a href="/A192951/b192951.txt">Table of n, a(n) for n = 0..400</a>
%H A192951 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (3, -2, -1, 1).
%F A192951 a(n) = 3*a(n-1) - 2*a(n-2) - a(n-3) + a(n-4).
%F A192951 From _Bruno Berselli_, Nov 16 2011: (Start)
%F A192951 G.f.: x*(1+2*x^2)/((1-x)^2*(1 - x - x^2)).
%F A192951 a(n) = ((25+13*t)*(1+t)^n + (25-13*t)*(1-t)^n)/(10*2^n) - 3*n - 5 = A000285(n+2) - 3*n - 5  where t=sqrt(5). (End)
%F A192951 a(n) = Fibonacci(n+4) + 2*Fibonacci(n+2) - (3*n+5). - _G. C. Greubel_, Jul 12 2019
%t A192951 (* First program *)
%t A192951 q = x^2; s = x + 1; z = 40;
%t A192951 p[0, x]:= 1;
%t A192951 p[n_, x_]:= x*p[n-1, x] + 3n - 1;
%t A192951 Table[Expand[p[n, x]], {n, 0, 7}]
%t A192951 reduce[{p1_, q_, s_, x_}]:= FixedPoint[(s PolynomialQuotient @@ #1 + PolynomialRemainder @@ #1 &)[{#1, q, x}] &, p1]
%t A192951 t = Table[reduce[{p[n, x], q, s, x}], {n, 0, z}];
%t A192951 u1 = Table[Coefficient[Part[t, n], x, 0], {n, 1, z}] (* A171516 *)
%t A192951 u2 = Table[Coefficient[Part[t, n], x, 1], {n, 1, z}] (* A192951 *)
%t A192951 (* Additional programs *)
%t A192951 LinearRecurrence[{3,-2,-1,1},{0,1,3,9},40] (* _Vincenzo Librandi_, Nov 16 2011 *)
%t A192951 With[{F=Fibonacci}, Table[F[n+4]+2*F[n+2]-(3*n+5), {n,0,40}]] (* _G. C. Greubel_, Jul 12 2019 *)
%o A192951 (Magma) I:=[0, 1, 3, 9]; [n le 4 select I[n] else 3*Self(n-1)-2*Self(n-2)-1*Self(n-3)+Self(n-4): n in [1..40]]; // _Vincenzo Librandi_, Nov 16 2011
%o A192951 (Magma) F:=Fibonacci; [F(n+4)+2*F(n+2)-(3*n+5): n in [0..40]]; // _G. C. Greubel_, Jul 12 2019
%o A192951 (PARI) a(n)=([0,1,0,0; 0,0,1,0; 0,0,0,1; 1,-1,-2,3]^n*[0;1;3;9])[1,1] \\ _Charles R Greathouse IV_, Mar 22 2016
%o A192951 (PARI) vector(40, n, n--; f=fibonacci; f(n+4)+2*f(n+2)-(3*n+5)) \\ _G. C. Greubel_, Jul 12 2019
%o A192951 (Sage) f=fibonacci; [f(n+4)+2*f(n+2)-(3*n+5) for n in (0..40)] # _G. C. Greubel_, Jul 12 2019
%o A192951 (GAP) F:=Fibonacci;; List([0..40], n-> F(n+4)+2*F(n+2)-(3*n+5)); # _G. C. Greubel_, Jul 12 2019
%Y A192951 Cf. A000045, A192232, A192744.
%K A192951 nonn,easy
%O A192951 0,3
%A A192951 _Clark Kimberling_, Jul 13 2011