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!)
A109086 Recursively defined polynomials, read by row. 5
1, 0, 1, 0, 1, 1, 0, 2, 1, 1, 1, 0, 4, 2, 7, 4, 6, 2, 1, 1, 0, 8, 4, 30, 25, 72, 68, 116, 102, 118, 84, 67, 33, 16, 4, 1, 1, 0, 16, 8, 124, 114, 641, 776, 2495, 3372, 7637, 10444, 18561, 24212, 35684, 42828, 53707, 57884, 62257, 59056, 54261, 44356, 34326, 23548 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,8
COMMENTS
lim(N->infinity)p_N(x)/prod(n = 0, N-1)p_n(x) = f(x), with f(x) from A109087.
LINKS
FORMULA
p_0(x) = x, p_(n+1)(x) = p_n(x)^2 + prod(i = 0, n-1)p_i(x)^(n-i), n >= 0. p_n(x) = sum(i = 0, 2^n)t(n, i)*x^i, n >= 0. a(2^(n+1)+n-i)=t(n, i), n>=0, 0<=i<=2^n.
EXAMPLE
p_0(x) = x, p_1(x) = x^2 + 1, p_2(x) = x^4 + 2*x^2 + x + 1,
p_3(x) = x^8 + 4*x^6 + 2*x^5 + 7*x^4 + 4*x^3 + 6*x^2 + 2*x + 1
p_4(x) = x^16 + 8*x^14 + 4*x^13 + 30*x^12 + 25*x^11 + 72*x^10 + 68*x^9 + 116*x^8 + 102*x^7 + 118*x^6 + 84*x^5 + 67*x^4 + 33*x^3 + 16*x^2 + 4*x + 1
MAPLE
p[0]:= x:
for n from 1 to 7 do
p[n]:= expand(p[n-1]^2 + mul(p[i]^(n-1-i), i=0..n-2))
od:
for n from 0 to 7 do
seq(coeff(p[n], x, j), j=degree(p[n]) .. 0, -1)
od; # Robert Israel, Jun 23 2020
PROG
(PARI) N=5; p=x; q=1; r=1; for(n=0, N, print(Vec(p)); q*=r; r*=p; p=p^2+q)
CROSSREFS
Sequence in context: A111941 A153462 A126310 * A213620 A331734 A105794
KEYWORD
easy,nonn,tabf,look
AUTHOR
Nikolaus Meyberg (Nikolaus.Meyberg(AT)t-online.de), Jun 19 2005
STATUS
approved

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