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
KEYWORD
nonn,uned
AUTHOR
Roger L. Bagula, Apr 14 2008
STATUS
approved