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!)
A281123 Triangle T read by rows: n-th row (n>=0) gives the non-vanishing coefficients of the polynomial q(n,x) = 2^(-n)*((x+1)^(2^n) - (x-1)^(2^n))/2. 4
1, 1, 1, 1, 1, 7, 7, 1, 1, 35, 273, 715, 715, 273, 35, 1, 1, 155, 6293, 105183, 876525, 4032015, 10855425, 17678835, 17678835, 10855425, 4032015, 876525, 105183, 6293, 155, 1, 1, 651, 119133, 9706503, 430321633, 11618684091, 205263418941, 2492484372855, 21552658988805, 136248095712855 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
COMMENTS
Row n has length 1 for n = 1 and 2^(n-1) = A000079(n-1) for n >= 1.
The triangle T gives the non-vanishing coefficients of the polynomial q(0,x) = 1 and q(n,x) = 2^(-n)*Sum_{k=0..2^(n-1)-1} A281122(n,k) * x^(2^n-1-2*k), n >= 1.
The polynomial q(n,x) = product_{k=0..n-1} p(k,x) with polynomial p(n,x) = ((x+1)^(2^n) + (x-1)^(2^n))/2, whose coefficients are tabulated in A201461.
The algorithm r(n) = 1/2*(r(n-1) + A/r(n-1)), starting with r(0) = A, used for approximating sqrt(A), which is known as the Babylonian method or Hero's method after the first-century Greek mathematician Hero of Alexandria and which can be derived from Newton's method, generates fractions beginning with (A+1)/2, (A^2 + 6*A + 1)/(4*(A + 1)), (A^4 + 28*A^3 + 70*A^2 + 28*A + 1)/(8*(A^3 + 7*A^2 + 7*A + 1), ... This is sqrt(A)*p(n,sqrt(A))/(2^n*q(n,sqrt(A))) with the given polynomials p(n,x) and q(n,x).
LINKS
Indranil Ghosh, Rows 0..10, flattened
FORMULA
T(n, k) = 1 for n=0, k=0, and T(n, k) = 2^(-n) * binomial(2^n,2*k+1) = A103328(2^(n-1),k) for k = 0..2^(n-1)-1 and n >= 1. - Wolfdieter Lang, Jan 20 2017
EXAMPLE
The triangle T(n, k) starts with
1
1
1, 1
1, 7, 7, 1
1, 35, 273, 715, 715, 273, 35, 1
1, 155, 6293, 105183, 876525, 4032015, 10855425, 17678835, 17678835, 10855425, 4032015, 876525, 105183, 6293, 155, 1
etc., since the first few polynomials are
q(0,x) = 1,
q(1,x) = x,
q(2,x) = x^3 + x = x*(x^2 + 1),
q(3,x) = x^7 + 7*x^5 + 7*x^3 + x = x*(x^2 + 1)*(x^4 + 6*x^2 + 1),
q(4,x) = x^15 + 35*x^13 + 273*x^11 + 715*x^9 + 715*x^7 + 273*x^5 + 35*x^3 + x = x*(x^2 + 1)*(x^4 + 6*x^2 + 1)*(x^8 + 28*x^6 + 70*x^4 + 28*x^2 + 1),
etc.
MATHEMATICA
t={1}; T[n_, k_]:=Table[2^(-n)Binomial[2^n, 2k+1], {n, 1, 6}, {k, 0, 2^(n-1)-1}]; Do[AppendTo[t, T[n, k]]]; Flatten[t] (* Indranil Ghosh, Feb 22 2017 *)
CROSSREFS
Sequence in context: A046542 A172351 A140136 * A171707 A156722 A152565
KEYWORD
nonn,tabf,easy
AUTHOR
Martin Renner, Jan 15 2017
EXTENSIONS
Edited. - Wolfdieter Lang, Jan 20 2017
More terms from Indranil Ghosh, Feb 22 2017
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 10:39 EDT 2024. Contains 371967 sequences. (Running on oeis4.)