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!)
A192340 Constant term of the reduction of n-th polynomial at A158985 by x^2->x+1. 2

%I #6 Mar 30 2012 18:57:34

%S 1,3,19,1091,4270307,65975813893475,15748607358316275150858234851,

%T 897339846665475127909937786392825941994036757434025817827,

%U 2913308988276889310145046342161059349226587591969604604068795694857825566722967409631885309325418272374141705507555

%N Constant term of the reduction of n-th polynomial at A158985 by x^2->x+1.

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

%e The first three polynomials at A158985 and their reductions are as follows:

%e p0(x)=1+x -> 1+x

%e p1(x)=2+2x+x^2 -> 3+3x

%e p2(x)=5+8x+8x^2+4x^3+x^4 -> 19+27x.

%e From these, we read

%e A192340=(1,3,19,...) and A192341=(1,3,27,...)

%t q[x_] := x + 1;

%t p[0, x_] := x + 1;

%t p[n_, x_] := 1 + p[n - 1, x]^2 /; n > 0 (* polynomials defined at A158985 *)

%t Table[Expand[p[n, x]], {n, 0, 4}]

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

%t t = Table[Last[Most[FixedPointList[Expand[#1 /. reductionRules] &, p[n, x]]]], {n, 0, 9}]

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

%t (* A192340 *)

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

%t (* A192341 *)

%Y Cf. A192232, A192341.

%K nonn

%O 1,2

%A _Clark Kimberling_, Jun 28 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 24 02:46 EDT 2024. Contains 371917 sequences. (Running on oeis4.)