Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
A084808
Least positive integers, all distinct, that satisfy sum(n>0,1/a(n)^z)=0, where z=1/2+I*sqrt(2).
2
1, 4, 6, 8, 10, 13, 17, 21, 25, 31, 36, 43, 50, 57, 65, 73, 82, 92, 102, 113, 124, 136, 148, 161, 174, 188, 203, 218, 233, 249, 266, 283, 301, 319, 338, 358, 377, 398, 419, 440, 462, 485, 508, 532, 556, 581, 606, 632, 659, 686, 713, 741, 770, 799, 828, 859, 889
OFFSET
1,2
COMMENTS
Sequence satisfies sum(n>0,1/a(n)^z)=0 by requiring that the modulus of the successive partial sums are monotonically decreasing in magnitude for the given z.
PROG
(PARI) 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, ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 04 2003
STATUS
approved