The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A354913 Nonzero coefficient with smallest index of polynomial p_n(x), where p_n(x) = Product_{i={-1,1}} p_{n-1}(x + i*sqrt(prime(n))), starting p_0(x) = x. 4
1, -2, 1, 576, 46225, 2000989041197056, 198828783273803025550632280753863681, 6104549033356152351183622743336946156997116945571290671544232012635281247174656 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
These polynomials are known as Swinnerton-Dyer polynomials: p_n(x) is of degree 2^n and has 2^n = A000079(n) real roots, which are the sums and differences of the square roots of the first n primes.
For n>=1 also product of the sums and differences of the square roots of the first n primes, combined in all possible ways.
For n>=2 each term a(n) is a perfect square, the square roots are 1, 24, 215, 44732416, ... .
LINKS
Eric Weisstein's World of Mathematics, Swinnerton-Dyer Polynomial
FORMULA
a(n) = [x^A000007(n)] p_n(x), with p_n(x) = Product_{v={-1,1}^n} (x + Sum_{i=1..n} v[i]*sqrt(prime(i))).
EXAMPLE
The first polynomials p_0(x) ... p_3(x) are:
x,
x^2 -2,
x^4 -10*x^2 +1,
x^8 -40*x^6 +352*x^4 -960*x^2 +576,
so the sequence starts 1, -2, 1, 576.
p_0(x) has 2^0 = 1 root: 0 (empty sum).
p_1(x) has 2^1 = 2 roots: -sqrt(2), sqrt(2); their product gives a(1) = -2.
p_2(x) has 2^2 = 4 roots: -sqrt(2)-sqrt(3), -sqrt(2)+sqrt(3), sqrt(2)-sqrt(3), sqrt(2)+sqrt(3); their product gives a(2) = 1.
MAPLE
p:= proc(n) option remember; expand(`if`(n=0, x, mul(
subs(x=x+i*sqrt(ithprime(n)), p(n-1)), i=[1, -1])))
end:
a:= n-> coeff(p(n), x, 1-signum(n)):
seq(a(n), n=0..8);
MATHEMATICA
p[n_] := p[n] = Expand[If[n == 0, x, Product[
p[n-1] /. x -> x+i*Sqrt[Prime[n]], {i, {1, -1}}]]];
a[n_] := Coefficient[p[n], x, 1-Sign[n]];
Table[a[n], {n, 0, 8}] (* Jean-François Alcover, Jun 25 2022, after Alois P. Heinz *)
CROSSREFS
Left column of A153731.
Sequence in context: A178393 A272538 A087037 * A036109 A240234 A367996
KEYWORD
sign
AUTHOR
Alois P. Heinz, Jun 12 2022
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 June 12 07:36 EDT 2024. Contains 373325 sequences. (Running on oeis4.)