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!)
A192472 Constant term of the reduction by x^2->x+1 of the polynomial p(n,x)=1+x^n+x^(2n+2). 5

%I #7 Nov 12 2012 09:54:41

%S 3,7,15,37,93,239,619,1611,4203,10981,28713,75115,196563,514463,

%T 1346647,3525189,9228453,24159415,63248571,165584323,433501203,

%U 1134914117,2971232785,7778770707,20365057443,53316366199,139583983839,365435492581

%N Constant term of the reduction by x^2->x+1 of the polynomial p(n,x)=1+x^n+x^(2n+2).

%C For an introduction to reductions of polynomials by substitutions such as x^2->x+1, see A192232.

%F Empirical G.f.: -x*(3*x^4-8*x^3-x^2+8*x-3)/((x-1)*(x^2-3*x+1)*(x^2+x-1)). [_Colin Barker_, Nov 12 2012]

%e The first four polynomials p(n,x) and their reductions are as follows:

%e p(1,x)=1+x+x^4 -> 3+4x

%e p(2,x)=1+x^2+x^6 -> 7+9x

%e p(3,x)=1+x^3+x^8 -> 15+23x

%e p(4,x)=1+x^4+x^10 -> 37+58x.

%e From these, read

%e A192472=(3,7,15,37,...) and A192473=(4,9,23,58,...)

%t Remove["Global`*"];

%t q[x_] := x + 1; p[n_, x_] := 1 + x^n + x^(2 n+2);

%t Table[Simplify[p[n, x]], {n, 1, 5}]

%t reductionRules = {x^y_?EvenQ -> q[x]^(y/2),

%t x^y_?OddQ -> x q[x]^((y - 1)/2)};

%t t = Table[FixedPoint[Expand[#1 /. reductionRules] &, p[n, x]], {n, 1, 30}]

%t Table[Coefficient[Part[t, n], x, 0], {n, 1, 30}]

%t (* A192472 *)

%t Table[Coefficient[Part[t, n], x, 1], {n, 1, 30}]

%t (* A192473 *)

%Y Cf. A192232, A192473.

%K nonn

%O 1,1

%A _Clark Kimberling_, Jul 01 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 August 17 07:15 EDT 2024. Contains 375200 sequences. (Running on oeis4.)