OFFSET
1,2
COMMENTS
Sequence satisfies Sum_{n>=1} 1/a(n)^z = 0 by requiring that the modulus of the successive partial sums are monotonically decreasing in magnitude for the given z.
|Sum_{k=1..n} 1/a(k)^z| appears to converge geometrically to 0.73530592... Does this behavior continue? If this is true then the complex sum converges to a circular orbit rather than a single value. - Martin Fuller, May 24 2026
PROG
(PARI) my(z=I/log(2), S=0, w=1, a=0); for(n=1, 100, b=a+1; while(abs(S+exp(-z*log(b)))>w, b++); S=S+exp(-z*log(b)); w=abs(S); a=b; print1(b, ", "))
(PARI) \\ See Fuller link in A084813
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 04 2003
EXTENSIONS
a(12)-a(17) from Sean A. Irvine, May 12 2026
a(18) onward from Martin Fuller, May 24 2026
STATUS
approved
