login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A136618
Primes that give answers to the find root solution the equation of that are imaginary part less than zero: x^2 + 2 x^(3/2 - 4*I*Pi x) + x^(1 - 8*I*Pi* x) == 0.
0
5, 89, 107, 139, 313, 331, 409, 421, 443, 449, 461, 491, 503, 547, 653, 757, 761, 769, 941, 947, 1063, 1181
OFFSET
1,1
COMMENTS
Derivation is like this:
z = 1/2 + I*4*Pi*x
y = ExpandAll[x^2*((1 + x^(-z)))/(1 - x^(-z))*((1 + x^(-z)))]
y has upper part of:
x^2 + 2 x^(3/2 - 4*I*Pi x) + x^(1 - 8*I*Pi* x)
The find root the limiting zeros of this equation near as
Prime[n] starting points. The Im[x]<0 results gives two specific solutions
that are unlike the others. Most of the first type of solutions are on a specific curve.
The two Im[x]<0 solutions are specifically:
{{0.275165+I*( -0.517457)}, {0.701928+I*( -0.0217616)}}
x=Prime[n]+Delta1+I*Delta2: Delta2 small and approaching a limit as n->Large
In total there are three types of solutions.
FORMULA
a(n)=If x such that FindRoot[x^2 + 2 x^(3/2 - 4*I*Pi x) + x^(1 - 8*I*Pi* x) == 0, {x, Prime[n]}] has Imaginary part Im[x]<0, report the prime[n]
MATHEMATICA
a1 = Flatten[Table[If[(Im[x] /. FindRoot[x^2 + 2 x^(3/2 - 4*I*Pi x) + x^(1 - 8*I*Pi* x) == 0, {x, Prime[n]}]) < 0, Prime[n], {}], {n, 1, 200}]
CROSSREFS
Sequence in context: A054954 A266064 A106971 * A138700 A139937 A059696
KEYWORD
nonn,uned
AUTHOR
Roger L. Bagula, Apr 14 2008
STATUS
approved