/* Copyright (C) 2021 Alessandro Languasco */ /**************** A. LANGUASCO ******************** ************* COMPUTATION OF Gamma_K, K quadratic *******/ \\ Global variables: global(tab); \\global variable used to initialise sumnum global(defaultprecision); \\ for computing the acceleration level of the firs sum \\{acclevel(a) = log( a *log(10)/log(2) - 2 ) /log(2) - 1;} {acclevel(a) = local(num,den,res); num = a * log(10) - log(3) + log(log(3)); den = 2 * log(2); res = log( 1+ num/den ) / log(2); return(res); } {acclevel2(a,q) = local(num,den,res); num = a * log(10) + 3*log(2) + log(log(2))+ log(q-1); den = (q-1) * log(2); res = log( num/den ) / log(2); return(res); } \\ sums of log der at q {qsumderlogs(c, q, B, L) = sum(k=0,B-1, lfun(L,c*2^k,1)/lfun(L,c*2^k) + zetahurwitz(c*2^k,1,1)/zeta(c*2^k) - 2*zetahurwitz(2*c*2^k,1,1)/zeta(2*c*2^k) + log(q)/ (q^(c*2^k)+1) ); } /************* COMPUTATION OF gammaT ********/ {gamma_quad(q1,q2,defaultprecision)=local(minutes, millisec, seconds, coeff, B, J, elaptimefinalcomp, qminusone, errS1, errS2, derlog, D, gammaK, Resultfile, gammaquad, errSquad, sumderlogs, sumderlogs2, L ); \\ minutes,millisec,seconds: used just to compute the elapsed computation time; local variables \\ defaultprecision: used to fix the precision used in the computations; global variable print("************ A. LANGUASCO *************"); print("********* COMPUTATION of gamma_quad **********"); print("******* CONSTANTS IN ONE INTERVAL ********"); \\ precision setting default(realprecision,defaultprecision+10); q1=nextprime(q1); q2=precprime(q2); if (q1>q2, print("error: no odd primes in this interval. END PROGRAM");return); if (q1 < 3, q1=3); print("Interval=[",q1,",",q2,"]"); Resultfile = fileopen("Resultfile.csv", "w"); filewrite(Resultfile,"q;r=(q-1)/2;gammaKr(q);gamma_quad(q);err_gammaquad; req. accuracy"); gettime(); print("Starting computation of gammaquad"); print("---------"); forprime(q=q1,q2, default(realprecision,defaultprecision+10); qminusone = q-1; D = kronecker(-1,q)*q; L = lfuncreate(D); \\ create the quadratic L-function mod q derlog = lfun(L,1,1)/lfun(L,1); \\ log derivative at 1 for L \\derlog = Lquadquot(1, D); \\ log derivative at 1 for the quadratic L-function mod q gammaK = Euler + derlog; coeff = 0.5 * ( gammaK - log(q)/qminusone); \\ coefficient in the sum J = ceil(acclevel(defaultprecision)); sumderlogs = sum(k=1,J, lfun(L,2^k,1)/lfun(L,2^k)- zetahurwitz(2^k,1,1)/zeta(2^k) - log(q)/ (q^(2^k)-1) ); errS1 = 4/3*log(3)/4^(2^J); \\print(errS1); \\B=J; B = ceil(acclevel2(defaultprecision,q)); if (B >= 1, sumderlogs2 = -qminusone*qsumderlogs(qminusone,q,B,L) + q*qsumderlogs(q,q,B,L), sumderlogs2 = 0; ); errS2 = 8*(q-1)*log(2)/ 2^( (q-1)*2^B ); \\print(sumderlogs2); \\print(0.5*sumderlogs); \\print(coeff); gammaquad = coeff - 0.5*sumderlogs + 0.5*sumderlogs2; errSquad = errS1+errS2; print("q = ",q); default(format,f); print("gammaK(",qminusone/2,",",q,") = ", gammaK ); print("gammaquad(",qminusone/2,",",q,") = ", gammaquad ); print("S(",qminusone/2,",",q,") = ", -(gammaquad-coeff)); if (-(gammaquad-coeff)<=0, print ("PROBLEM !!!!!")); filewrite1(Resultfile,q); filewrite1(Resultfile,";"); filewrite1(Resultfile,qminusone/2); filewrite1(Resultfile,";"); filewrite1(Resultfile, gammaK); filewrite1(Resultfile,";"); filewrite1(Resultfile, gammaquad); filewrite1(Resultfile,";"); default(format,e); default(realprecision,10); print("accuracy = ", errSquad); print("acceleration level S1 = ", J); filewrite1(Resultfile, errSquad); filewrite1(Resultfile,";"); filewrite(Resultfile, defaultprecision); fileflush(Resultfile); if (max(B,0) == 0, print("the second sum is already less than the desired accuracy"), print("acceleration level S2 = ", B); ); print("---------"); ); elaptimefinalcomp=gettime(); seconds=floor(elaptimefinalcomp/1000)%60; minutes=floor(elaptimefinalcomp/60000); millisec=elaptimefinalcomp- minutes*60000 - seconds*1000; print("gammaquad(q) computation time (output time included): ", minutes, " min, ", seconds, " sec, ", millisec, " millisec"); print("****** END PROGRAM ********"); } /* quadratic L function attached to the Kronecker symbol for small |D| */ {Lquad(s, D)= local(chi, q); print(D); chi=vector(abs(D),i,kronecker(D,i)); q=length(chi); print(q); if (s==1, -sum(a=1,q-1,chi[a]*psi(a/q))/q \\ L(1,chi) , sum(a=1,q-1,chi[a]*zetahurwitz(s,a/q))/q^s \\ L(s,chi) ) }; /* log derivative quadratic L function attached to the Kronecker symbol for small |D| */ {Lquadquot(s, D)= local(chi, q); chi=vector(abs(D),i,kronecker(D,i)); q=length(chi); if (s==1, Euler + log(2*Pi) + q*sum(a=1,q-1, chi[a]* lngamma(a/q)) / sum(a=1,q-1, chi[a]* a) \\ L'/L(1,chi) , -log(q)+ sum(a=1,q-1,chi[a]* zetahurwitz(s,a/q,1)) /sum(a=1,q-1,chi[a]* zetahurwitz(s,a/q)) \\ L'/L(s,chi) ) }; /**** RESULTS **** gp2.13.1 and gp2c0.0.12 compiled by myself, see below languasc@languasc-pro quadratic % gp2c-run -pmy_ -g -W gamma_quadratic-v2.gp Reading GPRC: /Users/languasc/.gprc GPRC Done. GP/PARI CALCULATOR Version 2.13.1 (released) arm64 running darwin (aarch64/GMP-6.2.1 kernel) 64-bit version compiled: Apr 16 2021, Apple clang version 12.0.0 (clang-1200.0.32.29) threading engine: single (readline v8.1 enabled, extended help enabled) Copyright (C) 2000-2020 The PARI Group PARI/GP is free software, covered by the GNU General Public License, and comes WITHOUT ANY WARRANTY WHATSOEVER. Type ? for help, \q to quit. Type ?17 for how to get moral (and possibly technical) support. parisizemax = 2048000000, primelimit = 500000 ------- 50 digits macmini ------- Last login: Fri May 21 08:00:33 on ttys013 languasc@languasc-macmini quadratic_field % gp2c-run -pmy_ -g -W gamma_quadratic-v2.gp Reading GPRC: /Users/languasc/.gprc GPRC Done. GP/PARI CALCULATOR Version 2.13.1 (released) i386 running darwin (x86-64/GMP-6.2.1 kernel) 64-bit version compiled: Jan 25 2021, Apple clang version 12.0.0 (clang-1200.0.32.28) threading engine: single (readline v8.0 enabled, extended help enabled) Copyright (C) 2000-2020 The PARI Group PARI/GP is free software, covered by the GNU General Public License, and comes WITHOUT ANY WARRANTY WHATSOEVER. Type ? for help, \q to quit. Type ?17 for how to get moral (and possibly technical) support. parisizemax = 2048000000, primelimit = 500000 ------------------ 50 digits macmini up to 3000 ------------------ ? gamma_quad(2,3000,50) ************ A. LANGUASCO ************* ********* COMPUTATION of gamma_quad ********** ******* CONSTANTS IN ONE INTERVAL ******** Interval=[3,2999] Starting computation of gammaquad --------- q = 3 gammaK(1,3) = 0.945497280871680703239749994158189073590923645932675197138163 gammaquad(1,3) = -0.0143841605505437150931809109055540137064408119047613545470457 S(1,3) = 0.212479728819356643864244598754017124340029995415411590182454 accuracy = 1.084285754 E-76 acceleration level S1 = 7 acceleration level S2 = 7 --------- q = 5 gammaK(2,5) = 1.40489514161703774859755907975977607779602328861489255345108 gammaquad(2,5) = 0.0461458800534074903928094692264289571939474847831848110873225 S(2,5) = 0.455121951700848837080875154000185626763363990240696750399138 accuracy = 2.042067495 E-76 acceleration level S1 = 7 acceleration level S2 = 6 --------- q = 7 gammaK(3,7) = 0.592851354895253239563134841433051093287025763579094440879347 gammaquad(3,7) = -0.0926780569130860504742496824172021064041068633790206176709785 S(3,7) = 0.226944555272769894830371041180129342244529351036746072405703 accuracy = 5.300386400 E-57 acceleration level S1 = 7 acceleration level S2 = 5 --------- q = 11 gammaK(5,11) = 0.492997360604491935512824706086721562189530954851774835254915 gammaquad(5,11) = -0.195292330176206138102173964274817986915775492499884490246318 S(5,11) = 0.321896246838533578655489138419922303019455627228901049112848 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 5 --------- q = 13 gammaK(6,13) = 1.04718723173231299991374416193524756118203996127350436353882 gammaquad(6,13) = 0.0301074924322382983687295991783323956192809523937408108986854 S(6,13) = 0.386613233539687504252580505057403109771519530544669407686597 accuracy = 1.060077280 E-56 acceleration level S1 = 7 acceleration level S2 = 4 --------- q = 17 gammaK(8,17) = 0.908307099257038977863668595013501552177477501281164206215679 gammaquad(8,17) = 0.0733559744654027950404264644833646711817990741626764787885114 S(8,17) = 0.292259658161359941383609876214850900669808332334601099716289 accuracy = 7.788757945 E-76 acceleration level S1 = 7 acceleration level S2 = 4 --------- q = 19 gammaK(9,19) = 0.492301983113821272099532696256330642134390306293850069053052 gammaquad(9,19) = -0.243088467617057774407969499876796863121113385731196157509627 S(9,19) = 0.407449487530456175457485086008077363709492448286478724854543 accuracy = 1.265040140 E-77 acceleration level S1 = 7 acceleration level S2 = 4 --------- q = 23 gammaK(11,23) = 0.155094716863085535094798696890315040002505309299033681384099 gammaquad(11,23) = -0.154890982078921318724503029041788889671789272763143726559047 S(11,23) = 0.161177108330256138753567085854896497890260556620832482205674 accuracy = 1.273675785 E-51 acceleration level S1 = 7 acceleration level S2 = 3 --------- q = 29 gammaK(14,29) = 0.887324790861093605645613427550080812469140322272234441716631 gammaquad(14,29) = -0.0433981284358583477948810901248455257723797234667427146869489 S(14,29) = 0.426930241188075257275129374750566081908833582568525219850235 accuracy = 5.759097759 E-66 acceleration level S1 = 7 acceleration level S2 = 3 --------- q = 31 gammaK(15,31) = 0.126058512779792311526859685486561017736465458624578447974359 gammaquad(15,31) = -0.200758937437857720945746151120917991208049061958907334409184 S(15,31) = 0.206555073753001439277023255121825879902116142429853358867085 accuracy = 9.415378897 E-71 acceleration level S1 = 7 acceleration level S2 = 3 --------- q = 37 gammaK(18,37) = 0.733102673172264776908861817524507766265533028550684867613968 gammaquad(18,37) = -0.0394363866424350349832295582675556420651615157685345299545856 S(18,37) = 0.355836085552953195043659138265483870143760285777659794822057 accuracy = 1.265040160 E-77 acceleration level S1 = 7 acceleration level S2 = 3 --------- q = 41 gammaK(20,41) = 0.615934968228594782958889511356674356895293389810944361839551 gammaquad(20,41) = 0.0146474462054087808634946768760351881892106409107671064216982 S(20,41) = 0.246900387075084763067615536639334395403730923127213804077837 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 3 --------- q = 43 gammaK(21,43) = 0.826697991974027773137090735656156613740164441507435991444777 gammaquad(21,43) = -0.130180614883202449317010686524711545088630222920762168277954 S(21,43) = 0.498753419016721545129926976812958339630627489092556885248061 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 3 --------- q = 47 gammaK(23,47) = -0.0639434544522170508525085313015869657394869154126141368500805 gammaquad(23,47) = -0.209459271787288004741097547540618668694635413157388726454542 S(23,47) = 0.135638114107809277284180774609692862902108797820427048972974 accuracy = 1.040289171 E-53 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 53 gammaK(26,53) = 0.878110627484391660677869334383630435040536809220506131218129 gammaquad(26,53) = -0.0652459448747979912548814414925816414873627302677428088287400 S(26,53) = 0.466125374832838803957811597732194380446477502638464935946957 accuracy = 7.009381428 E-61 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 59 gammaK(29,59) = 0.0440847670224070536754955164366911856779710373826678767366528 gammaquad(29,59) = -0.305142853766388656601623065868861050649759916870252673432788 S(29,59) = 0.292034052416335981278887631210312698453716583929427521029459 accuracy = 4.659984237 E-68 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 61 gammaK(30,61) = 0.572790922762332505424740748083304517325872513539398024625139 gammaquad(30,61) = -0.0773526292133287215832462469562201037673655064398706751996700 S(30,61) = 0.329490808393050713889355045135992239544337748683892511987761 accuracy = 1.883075653 E-70 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 67 gammaK(33,67) = 1.23557939957748197022641609358833347210104709960531020897882 gammaquad(33,67) = 0.0587958118987415049252742472848842785133903271609317411283705 S(33,67) = 0.527140155924916403978312041961072436699504943071860519897874 accuracy = 2.499680646 E-77 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 71 gammaK(35,71) = -0.205359596043008924545317832926669995000916949021075394700293 gammaquad(35,71) = -0.242044003823473935753177121096661754424970762637203931810202 S(35,71) = 0.108916492394531506185307815115376513376229598650162190830617 accuracy = 1.265060101 E-77 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 73 gammaK(36,73) = 0.384775924995843291497501509840814256929310989740896201881474 gammaquad(36,73) = -0.0106270877288764761078288639634999893817559930282028274689221 S(36,73) = 0.173220192996600961237884418485028349992906259809264833516634 accuracy = 1.265040200 E-77 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 79 gammaK(39,79) = -0.0552643439689267385196440414346961350381915861160694936766142 gammaquad(39,79) = -0.266362251932808223100093639665794615536416681532658999124618 S(39,79) = 0.210720798842787023749419403938950324157234085753966498277258 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 83 gammaK(41,83) = 0.118212456627370468976883170695170955818439701716515628244978 gammaquad(41,83) = -0.304303321698196569204191138728805983678968456381626565055533 S(41,83) = 0.336465399964341572451928625153883105167277861772425620823218 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 89 gammaK(44,89) = 0.403873279807705943888953890764075539388660894950294287229824 gammaquad(44,89) = -0.0535000457334541323546467705342916317095423149508397859707145 S(44,89) = 0.229933069900192673399590673071614349020891737499095115016838 accuracy = 5.094703139 E-51 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 97 gammaK(48,97) = 0.300746656859439020714712186457003681033852432184403285037357 gammaquad(48,97) = -0.0378544644598258677125218003966780735369696960057433986959932 S(48,97) = 0.164401173209840259204686635178805113461141146979930554985629 accuracy = 8.480618239 E-56 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 101 gammaK(50,101) = 0.743144143271530600772153129534654863065341622262569584539762 gammaquad(50,101) = -0.0987097455061733317652663301175735326537132715546511787448372 S(50,101) = 0.447206214557732334896921903550336018401929669749947947265062 accuracy = 3.450772396 E-58 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 103 gammaK(51,103) = 0.00806182570974999256560305416069477960735482684701053847375948 gammaquad(51,103) = -0.263041677624444145877576157157991569653070012025138749644764 S(51,103) = 0.244353330733095437401708065046900524061510851388002826908059 accuracy = 2.199867402 E-59 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 107 gammaK(53,107) = 0.223008049343733207892431522487751558037943765725836643088233 gammaquad(53,107) = -0.274324884353086131332570042482593829795280212234965246694054 S(53,107) = 0.363787263579377706159425431948057924844614612663301457136472 accuracy = 8.930221531 E-62 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 109 gammaK(54,109) = 0.394919543721104448448278332596906393918181477684295031088120 gammaquad(54,109) = -0.130723660194230752299696529174944953070485432759383088142358 S(54,109) = 0.306464228896314718651718489676133327570963445289015644644405 accuracy = 5.686697673 E-63 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 113 gammaK(56,113) = 0.390312154927759939755071133081321697446077147656538359252212 gammaquad(56,113) = -0.0746497873526444035766661323090757412270177161662061185780631 S(56,113) = 0.248701454911558567344460040396093636057068207902051218763364 accuracy = 2.303639104 E-65 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 127 gammaK(63,127) = 0.0925121825140514524972008360928078377994614930483995389508742 gammaquad(63,127) = -0.240029525791358444365386763524206789028451962969652538433867 S(63,127) = 0.267062652419580236990783051381260341281857673287796412024752 accuracy = 9.655704995 E-74 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 131 gammaK(65,131) = -0.160864748234258697600686194676642386020123766543706938008690 gammaquad(65,131) = -0.375370893022496187498644114141635823453845238309442092875008 S(65,131) = 0.276187759969977794297726309068047223162599085788971004747752 accuracy = 4.017492337 E-76 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 137 gammaK(68,137) = 0.355771700959618339062565735682561475102132716935635029944777 gammaquad(68,137) = -0.0893938072769295505564763454290013132935838693140736510302656 S(68,137) = 0.249191492588252966722629837799767839849932819053786146462028 accuracy = 1.274978041 E-77 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 139 gammaK(69,139) = 0.175022938468019780991265082017309492726247948615123644164757 gammaquad(69,139) = -0.334887502965627210385495225489548903289538068226386405020870 S(69,139) = 0.404520443456409956833342313893582114209029445938458539002980 accuracy = 1.265670374 E-77 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 149 gammaK(74,149) = 0.592800513721625072131668400793291655323916710130822302118044 gammaquad(74,149) = -0.144256580068984995815066661954619899584692259265903002193762 S(74,149) = 0.423751612923225034782953469529968022895785463077283858834576 accuracy = 1.265040121 E-77 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 151 gammaK(75,151) = -0.143540485500707215803030793348882263507597123004822174115871 gammaquad(75,151) = -0.302286021032400859451430831074688753508181067938370697067488 S(75,151) = 0.213791512159330837120594646735299367453523385127360310425277 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 157 gammaK(78,157) = 0.488159351865002936648030633604448820619496562515099203469522 gammaquad(78,157) = -0.136536850975188832367033862703600853738474815689225157391424 S(78,157) = 0.364410610864907262045458008876326945943280008386314341318723 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 163 gammaK(81,163) = 2.74554279418505666447051533649746906191427605620474466237177 gammaquad(81,163) = 0.801499031628166681774949165178396257764328191768772255280415 S(81,163) = 0.555550914227303742021836489594656946413081789967148784127921 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 167 gammaK(83,167) = -0.376220308036904272842350094735005099998421599501646355489418 gammaquad(83,167) = -0.320278611510223262619492478366891100070930924405270946044148 S(83,167) = 0.116752813478467646959583241912807889331366743321282130950464 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 173 gammaK(86,173) = 1.24479947293024505450446269190065729708962488442017819942483 gammaquad(86,173) = 0.0830850857345306808065876336676420925067590235494501148148615 S(86,173) = 0.524334151909377372762697490223265069209024776487051559646343 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 179 gammaK(89,179) = -0.0539311348925890910188524806093861892147164490554103754738157 gammaquad(89,179) = -0.353869425524519067791023090977384164083856417472009260391426 S(89,179) = 0.312332549634851614988962568565889377971995570983121073911466 accuracy = 2.576298746 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 181 gammaK(90,181) = 0.310789870137041930724536373484121652462570890347987218033398 gammaquad(90,181) = -0.172868421047262874685947954461538623255565229681274186191994 S(90,181) = 0.313823086584489879640329788318507758022294195851094242948740 accuracy = 6.513114808 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 191 gammaK(95,191) = -0.453588151546997252815275870547274457045583489574705587443602 gammaquad(95,191) = -0.333902672725834657442557912968738108527688344242992295419427 S(95,191) = 0.0932868247732659524221569515050946506717164903070406937200451 accuracy = 6.713822773 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 193 gammaK(96,193) = 0.0975471264188241497013082169164668573860658121655621221954173 gammaquad(96,193) = -0.105715293065487559066151889092717947904297121000986405042557 S(96,193) = 0.140783933907959827792183781266099661065585059655176357874200 accuracy = 1.696123648 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 197 gammaK(98,197) = 0.954354601996743119823542405998188206521686224131467914365195 gammaquad(98,197) = -0.0290330192489716952280685526859239298638104945157692623192066 S(98,197) = 0.492732759714848386500095374743276117372080534993855159027828 accuracy = 1.082162223 E-56 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 199 gammaK(99,199) = -0.273088493247754470158588875951848607958418115486293410228900 gammaquad(99,199) = -0.340923181924444457125177557489863301657048052626879988930682 S(99,199) = 0.191012003925000322057473722312250772420538223973204312859397 accuracy = 2.733011737 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 211 gammaK(105,211) = 0.424774238463551240286910775492231225444683072766637566442306 gammaquad(105,211) = -0.241934145703132528202805190770161351798998748200224805635409 S(105,211) = 0.441578745569488942404017825503290583287908955598825330831115 accuracy = 7.076779327 E-61 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 223 gammaK(111,223) = 0.0102747995014170240537028582218802902295405065878495621034857 gammaquad(111,223) = -0.263140402433944569253157093770905720354210051119282059085229 S(111,223) = 0.256099487384067228220017294932018973516956366858092004949787 accuracy = 1.826456718 E-64 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 227 gammaK(113,227) = 0.0265282466662660257711679032259135735213118296607719201737530 gammaquad(113,227) = -0.338234284458165040805097951136812297994178597447829552567183 S(113,227) = 0.339496305982710879630917784216951613415996238121315128786493 accuracy = 1.162103655 E-65 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 229 gammaK(114,229) = 0.271591123940222832284183092004943661415417491899810787035654 gammaquad(114,229) = -0.190661623714753067102757662025097468035655180296036444712146 S(114,229) = 0.314541128659526238401776322931225859451174299177968272775919 accuracy = 2.930969395 E-66 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 233 gammaK(116,233) = 0.279134685939512288852518180423991634629279786651705016866952 gammaquad(116,233) = -0.124492923431747430026098055385979538976066870273134675143568 S(116,233) = 0.252312338699853357716792005781878616035127074266097278603459 accuracy = 1.863993695 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 239 gammaK(119,239) = -0.510346919924465600595597100655958799487060212268148494776934 gammaquad(119,239) = -0.355466994625400296204525303661587654692004081378116398636386 S(119,239) = 0.0887883591338996163542831323372597064265458148326913746286564 accuracy = 2.987813181 E-69 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 241 gammaK(120,241) = 0.00339589862209132501998269365422964821139106158639329357812744 gammaquad(120,241) = -0.125860362254877223201391707283788966211851004272048563916790 S(120,241) = 0.116131651287817354470828030530256257536260577223544694377372 accuracy = 7.532302232 E-70 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 251 gammaK(125,251) = -0.252799831129637705704786206137308036207277855942524021423860 gammaquad(125,251) = -0.417453476653488772406635892546114210920271968431305293283355 S(125,251) = 0.280002655210406351781805618999443686334074349228875806700153 accuracy = 7.662380437 E-73 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 257 gammaK(128,257) = 0.337852975874596531645929291920530692841856339022972554844701 gammaquad(128,257) = -0.113035927446272504834975440222434163390103357664857781992093 S(128,257) = 0.271124376155259794489284237911681432757096517744728932777641 accuracy = 1.227225669 E-74 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 263 gammaK(131,263) = -0.390820309171766731319068163237395396339998482445327366919625 gammaquad(131,263) = -0.341583926558603441238861191184911387655713523261210785636656 S(131,263) = 0.135539890231922814985651677764295612977345038068958237140913 accuracy = 2.086963514 E-76 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 269 gammaK(134,269) = 0.620858450697879574343790911437681539739831342417402407340652 gammaquad(134,269) = -0.143057550547919107523803623878511935728714602445104277812570 S(134,269) = 0.443048881531930090393049913215831740826482795834471456083274 accuracy = 1.578376920 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 271 gammaK(135,271) = -0.353849063140421521232186444799499096366837271552190458743431 gammaquad(135,271) = -0.371240133416749089149189827638061367334270574156832381359516 S(135,271) = 0.183941307733798141681065364362004667226952805178113960023858 accuracy = 1.343958904 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 277 gammaK(138,277) = 0.341056878707485643335795427913036213775539082743700104952415 gammaquad(138,277) = -0.186134570074266928724211460295713949403188094314826682246328 S(138,277) = 0.346474571916800803834374758401643993176531874911726968566134 accuracy = 1.266300629 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 281 gammaK(140,281) = 0.106052521109155327296859873849923456426398753796689102208249 gammaquad(140,281) = -0.160921440044009159749508393327644469333611512682855299161395 S(140,281) = 0.203879210117633705960247904672796961938203950713326761823345 accuracy = 1.265120044 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 283 gammaK(141,283) = 0.580366332995681093951046550782838993666635333586131586304289 gammaquad(141,283) = -0.190695759818013261104671646650728746075428706537515173784092 S(141,283) = 0.470869268695918989596780051214497285098816526694230866562944 accuracy = 1.265060244 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 293 gammaK(146,293) = 1.63032234782806628704267271074535261737317602848093310838091 gammaquad(146,293) = 0.265588143051994213273257499498008652928790892899627938571471 S(146,293) = 0.539846707901393267052976389671221597212883123638969250982774 accuracy = 1.265040141 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 307 gammaK(153,307) = 0.657577589704655470582516012724982516749278999820623651305178 gammaquad(153,307) = -0.156498421584102143766600975382771971535869008867088280631833 S(153,307) = 0.475929622077627269329756918726827785002263887560523860057812 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 311 gammaK(155,311) = -0.624123092306631066595111622178138685385033103759240410315581 gammaquad(155,311) = -0.388163131820930167214391922290338582866764680569916972768534 S(155,311) = 0.0668438551640997401520038602892810429546998635088485629652538 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 313 gammaK(156,313) = 0.00887695430676460178589452016436053788326020680106883144435292 gammaquad(156,313) = -0.151109989843144394420585609233026137960398159513631109116288 S(156,313) = 0.146339808037327731825265617217037800566173937163625028158740 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 317 gammaK(158,317) = 0.854752339344671242786759320919257806610089309748880482466137 gammaquad(158,317) = -0.0646323098131341775348362019712248009664956859014518106528220 S(158,317) = 0.482896293134398152386760542542722990174423911717842885114155 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 331 gammaK(165,331) = 0.870750189616758335519170114322993342678836868226687788321830 gammaquad(165,331) = -0.0416427168015584467930198438654902912765642953320564584939177 S(165,331) = 0.468226723162396610157476693694295088666441733845831227462766 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 337 gammaK(168,337) = -0.0444333655343140204973870087511383499075616232558211087014200 gammaquad(168,337) = -0.161945748580343186643388534671203900254046794588493820460020 S(168,337) = 0.131068228119209447637991359827407893138216346399266455529140 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 347 gammaK(173,347) = 0.306283809064693342323095740631986935347340226729476670657162 gammaquad(173,347) = -0.230222655738654430015814453437855707252902209084945065074016 S(173,347) = 0.374911778797089454945637357212829146697389983899952307086268 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 349 gammaK(174,349) = 0.243480902351584587777566310344706627926869557200360804741513 gammaquad(174,349) = -0.209576445320504492632170858595026186730760834245560567565917 S(174,349) = 0.322904436837959965884173149510915937893694340809159989492382 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 353 gammaK(176,353) = 0.341185561571711322157835139371965968743403725864698728141294 gammaquad(176,353) = -0.115336084987719074494430513033655129861547623333348554656048 S(176,353) = 0.277595814556339939028751889371359747752438023257461518466083 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 359 gammaK(179,359) = -0.594359650156676925068690732080870134964695087157825083390343 gammaquad(179,359) = -0.391338259781168184651797782917835181118631915006738028845731 S(179,359) = 0.0859415039926505616802344100539298902037215978709796748096811 accuracy = 2.590772335 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 367 gammaK(183,367) = -0.0114812326514358685459330016124335725308893797244172361796278 gammaquad(183,367) = -0.269447316372073353266241778067951322630579560576808861648856 S(183,367) = 0.255639265827701634469205015049769469199110736240538592925183 accuracy = 1.655416680 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 373 gammaK(186,373) = 0.300053717205031512468746152433758208387931511385294335838643 gammaquad(186,373) = -0.203966889987604663279815858877604457259438581685227777412719 S(186,373) = 0.346034637811029269593038754173647991375556464229183195690065 accuracy = 2.103193323 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 379 gammaK(189,379) = 1.04677504875426168733200724428587026408624314659690298652978 gammaquad(189,379) = 0.0414415937849423286769064856786658073224903041656644107774401 S(189,379) = 0.474092046723031866380873278549383573519455606686528649422278 accuracy = 2.671394745 E-54 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 383 gammaK(191,383) = -0.498766146702360931954254464648974865732296065147896984674197 gammaquad(191,383) = -0.377459175663241208690914050508971268596425052944785893907921 S(191,383) = 0.120290716200567750580288055701299974143652223069513085253991 accuracy = 6.749158682 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 389 gammaK(194,389) = 0.306671747094388729472288128086911847714943197596353898224201 gammaquad(194,389) = -0.253046588329652440337824332099779787406335539847982214474412 S(194,389) = 0.398697436949503446449163473161750952692777769550529712822237 accuracy = 8.568958013 E-56 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 397 gammaK(198,397) = 0.466659731478946139600603989469579229913608151985395113187753 gammaquad(198,397) = -0.150875985177048743625675453885188928068043334979946345975321 S(198,397) = 0.376650375814644047752892307167735033828531391084859250874192 accuracy = 5.466023475 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 401 gammaK(200,401) = 0.00818440324329625388886783207907360428899261778706426748429175 gammaquad(200,401) = -0.198122996689986769874947091649202019259606302264168198634568 S(200,401) = 0.194722746527501685337067658829552134240505189506525605120352 accuracy = 1.380308958 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 409 gammaK(204,409) = -0.130528022476625224300311130195381965016083672113606250056441 gammaquad(204,409) = -0.180418130090850210765523718821713549054297870304376228294317 S(204,409) = 0.107784369886798870985817268663816211047098202553444477720443 accuracy = 8.799469609 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 419 gammaK(209,419) = -0.295398039028251989137705348428489682605610112797150035232698 gammaquad(209,419) = -0.438663091680163128051779937092027085117905647403272632163986 S(209,419) = 0.283741738529766633804658203162847446697956825606977733663901 accuracy = 2.817232151 E-60 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 421 gammaK(210,421) = 0.0552657818887817403526932131214258488470562438249196934181232 gammaquad(210,421) = -0.263212613085305400912840387668847369507873770780055510627267 S(210,421) = 0.283651893513407721782533760624325654081971485475878853813380 accuracy = 1.415355865 E-60 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 431 gammaK(215,431) = -0.625615785054681922531846520641843589383009680845269587715150 gammaquad(215,431) = -0.405716869383013427367616039202779712491185969251190123467846 S(215,431) = 0.0858553627974122942554745616652008826208526692825939526292086 accuracy = 4.528296295 E-62 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 433 gammaK(216,433) = -0.0592853626845265661696594540702222226700219802117132492669128 gammaquad(216,433) = -0.180490296905374427867979734108210431490451270917061186219494 S(216,433) = 0.143821298748293448201297825853223690561080314024513597282876 accuracy = 2.274679069 E-62 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 439 gammaK(219,439) = -0.482071322637443935302778269583995414272385674025873492197396 gammaquad(219,439) = -0.422273841110067229670180069880765772169840069068962714320915 S(219,439) = 0.174292404205643011619255304803673597339176740542265574973053 accuracy = 2.882839793 E-63 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 443 gammaK(221,443) = 0.542308496631491230665169755400313713190146438891493282220092 gammaquad(221,443) = -0.125410819423925215510198355319679432491250255966479320128243 S(221,443) = 0.389671889266769093695627116212319008879117890008182028020418 accuracy = 7.272917742 E-64 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 449 gammaK(224,449) = -0.0177727715471409931849710241821597567915092925963527926014313 gammaquad(224,449) = -0.209072911355682274274643031489080528340596300081078515177795 S(224,449) = 0.193370651823470868872722785256453652175401281021139659346335 accuracy = 9.214556415 E-65 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 457 gammaK(228,457) = -0.106837948871164538361542784332213591768998063909560140017578 gammaquad(228,457) = -0.190159706244437295761748088906129860815556413208463647220828 S(228,457) = 0.130025070196032433709054403558933718950335537250531084082464 accuracy = 5.861938791 E-66 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 461 gammaK(230,461) = 0.780659989377687750751127853231358856968898428055539000919375 gammaquad(230,461) = -0.0790298909484758743961188934885980252550635842359857111566280 S(230,461) = 0.462693148634062523121277684024631229239888207086453659187425 accuracy = 1.478339827 E-66 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 463 gammaK(231,463) = 0.630856786876787147488538635003422954439581313862465878385583 gammaquad(231,463) = 0.00187329506676060591789376524278352727993214710360823538035513 S(231,463) = 0.306912536624786394153128964400422852600502645322872075228897 accuracy = 7.423836956 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 467 gammaK(233,467) = 0.0214397802030996752052274973632893631138900393212849476602971 gammaquad(233,467) = -0.340590319049689512980242478107257111440065857825642238203320 S(233,467) = 0.344715435269620362051172180341762019406720274492121008644398 accuracy = 1.872028150 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 479 gammaK(239,479) = -0.735180236083431693441599267097057557075709988696630798089586 gammaquad(239,479) = -0.432859600387500961623167474643456878423967597068407821109266 S(239,479) = 0.0588137285828029859953420274637569528004565199107481054267816 accuracy = 3.000367018 E-69 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 487 gammaK(243,487) = 0.693736807431706964356317814361603764072335701797670422375753 gammaquad(243,487) = 0.0312785596500946303596651276222872026322962069790751279459409 S(243,487) = 0.309223317190159479605808686110726052341031630748836267563970 accuracy = 1.906614097 E-70 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 491 gammaK(245,491) = -0.235653325866490221768297616048430284321763970987833406738519 gammaquad(245,491) = -0.425649211377416905376243404043861142210001678444218954674070 S(245,491) = 0.301499646272952895942365830381875505505238525125462008064515 accuracy = 4.805766932 E-71 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 499 gammaK(249,499) = 1.47306388498186262721542202328413548384838836395153609445245 gammaquad(249,499) = 0.246674762621527729387789473442490036686339222569873465213529 S(249,499) = 0.483619623548367922909394338261842370877404703459109656570352 accuracy = 3.052654617 E-72 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 503 gammaK(251,503) = -0.603024198941821415769757457785900104403889992058583640505971 gammaquad(251,503) = -0.414569367839766936559556639531322984537433886229100546462283 S(251,503) = 0.106861461426525811138404244188536667363550929800739702742938 accuracy = 7.693029452 E-73 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 509 gammaK(254,509) = 0.623856682077253417033776556662462889063358829380683654986473 gammaquad(254,509) = -0.142720734671133029135567413012403166621948290098272771904279 S(254,509) = 0.448514776480871427866200904083733273901140967659252693494920 accuracy = 9.732327534 E-74 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 521 gammaK(260,521) = 0.0399866332423493350419836149919437809515755794181829770366149 gammaquad(260,521) = -0.202258542544777340244169915360936680322280844210197050225095 S(260,521) = 0.216236714895035308805460861600641420352375166744325561414922 accuracy = 1.569045731 E-75 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 523 gammaK(261,523) = 0.145942153616811440418693940971206752283546361607209248723682 gammaquad(261,523) = -0.383109681342491532890072730801602076613458276526261268782696 S(261,523) = 0.450084990465011311623547916634989844236344157486470335444148 accuracy = 7.938411342 E-76 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 541 gammaK(270,541) = 0.0635853624590910588031457929511927855837406872779626251527917 gammaquad(270,541) = -0.268634407578233990904053700711096021722098003941794416384453 S(270,541) = 0.294599848734773518896765314212076997720628822369924848304068 accuracy = 1.422877687 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 547 gammaK(273,547) = 1.27321001866012477296871081943120036303026786612566669200130 gammaquad(273,547) = 0.118923029371962488844745484690829071543111553373918445615386 S(273,547) = 0.511908675193977204227858338374956402322947384986946867935946 accuracy = 1.284989035 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 557 gammaK(278,557) = 0.997055083864864552066817630663489065276792798742171936208791 gammaquad(278,557) = -0.00110999928762702681368015906821265345452386927381298454992072 S(278,557) = 0.493951781112211025848967187586247849973989741010185113754662 accuracy = 1.265674941 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 563 gammaK(281,563) = -0.227827739024741050367824721438309392050030071438515370882281 gammaquad(281,563) = -0.441224501468491928526771377120267047935780257184579337764111 S(281,563) = 0.321676041539627016882004179222626817228797272215103151193850 accuracy = 1.265120329 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 569 gammaK(284,569) = -0.0600705468994151385986586278585052710123203656026193823733429 gammaquad(284,569) = -0.229246099712993456738120240942268439142541512851875461020221 S(284,569) = 0.193626424472681722895672806582219907088763872766058712326550 accuracy = 1.265050253 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 571 gammaK(285,571) = 0.369896123294001710939599949838250452084674737409053914936440 gammaquad(285,571) = -0.261350203093031429993465987942401907462505438519041593191378 S(285,571) = 0.440730379468404206325783536373860792132756878983178782379194 accuracy = 1.265045205 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 577 gammaK(288,577) = -0.0999385639978090337008836060998327470460112102518806897141682 gammaquad(288,577) = -0.201473376095989288142701189908569676023345224540762139056209 S(288,577) = 0.145985133796296490422922081904425274369261415569547655965175 accuracy = 1.265040762 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 587 gammaK(293,587) = 0.217964249440891196673955057470433182732796178353464077527300 gammaquad(293,587) = -0.256024451537855692274938711473026810761727052634405153628459 S(293,587) = 0.359567135285751720263537144220555968102727023826233398553655 accuracy = 1.265040141 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 593 gammaK(296,593) = 0.440591631654440526148521785271847592173145868640876472517260 gammaquad(296,593) = -0.0791034370763867174402788020971289889234637052817826133861727 S(296,593) = 0.294006352228777820503942887517132051362009755087414620851221 accuracy = 1.265040123 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 599 gammaK(299,599) = -0.675497767279017807541181308445253417416056436865978682715367 gammaquad(299,599) = -0.429907420479168612418776454711737701575058720751706169419949 S(299,599) = 0.0868113281455832459819565369666348585134155273606293035443393 accuracy = 1.265040121 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 601 gammaK(300,601) = -0.226524112004330160631839388120246646160917087866477326989866 gammaquad(300,601) = -0.219953978292834728775997641564051649407617595917856568585872 S(300,601) = 0.101359759845223642144017047081779037883729164274841740570438 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 607 gammaK(303,607) = -0.206932655217321820108842040476905643195771282972931019935138 gammaquad(303,607) = -0.347073761092002445674499383762834400938484031618684355286812 S(303,607) = 0.238319868474216537053948023396620282503531461306778801075862 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 613 gammaK(306,613) = 0.296016789805551497668069344125703561245671738706349578491780 gammaquad(306,613) = -0.210363250890221378292566045715823031153226910114018554633521 S(306,613) = 0.353127883590434862911372178078040783233017778114512268809584 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 617 gammaK(308,617) = 0.141835764287865551405464353970175003515626271033438449870213 gammaquad(308,617) = -0.184002485528298345674809358004288178415084398722840516334861 S(308,617) = 0.249705376581398826073972077458036239568421531872158066594071 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 619 gammaK(309,619) = 0.540406663024425994426176174523101320345405527495059477461436 gammaquad(309,619) = -0.171906387018087695215907824917447902480612861080707022293081 S(309,619) = 0.436908986109034837977355106847162216593544592947701912493634 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 631 gammaK(315,631) = -0.105255167833210248383101210174550426304166633590129940039359 gammaquad(315,631) = -0.291192865705699565059619551047237609499728933701282702246585 S(315,631) = 0.233448372374379192330546137996735734376391877035871656832121 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 641 gammaK(320,641) = -0.118289633825258100794107392222848917165716498237534196778119 gammaquad(320,641) = -0.248915076320898321271086154665469707253619569251256904068877 S(320,641) = 0.184721017645049997405412609696231498525551762453274994527074 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 643 gammaK(321,643) = 1.67578474617683502835219122497332539512464065154638032888128 gammaquad(321,643) = 0.324897960415040797284302572981422783978706201631947997730192 S(321,643) = 0.507958474414624676870558951885654218033088445607435706224903 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 647 gammaK(323,647) = -0.593641245623919415403054148093804072450646693981346339630813 gammaquad(323,647) = -0.417446465734909775976419646141966717829008296628300709015099 S(323,647) = 0.115616286967454015206274097469942746300423772394294753056551 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 653 gammaK(326,653) = 0.588194971780564219826439663601142135881215080710090994462103 gammaquad(326,653) = -0.175588031310342873399051335589657109397319621446281452563996 S(326,653) = 0.464714982592284161946156941108634446446972948951292933030158 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 659 gammaK(329,659) = -0.335909847595367125151998210032012201364188211020789008955031 gammaquad(329,659) = -0.467456454826797373417449748118443363168558926026623888975468 S(329,659) = 0.294569370288610385902845875738592411345854622627369670318151 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 661 gammaK(330,661) = 0.114748906861216062562040961435071117961041090268924304161656 gammaquad(330,661) = -0.261692381579304311149487018424632320381536453207899471823468 S(330,661) = 0.314147324525176216456385764605441585970831795803937714612899 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 673 gammaK(336,673) = -0.193995631996386924021843802934426865361559437800534427979093 gammaquad(336,673) = -0.227074982591565927415950433940056308120117690097913466674421 S(336,673) = 0.125232117985005852455193033094601552369792686378618744499936 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 677 gammaK(338,677) = 1.98890471752918022380605289343812900601009764209943994966239 gammaquad(338,677) = 0.449074889870860294490553168741896616902252256923216581893441 S(338,677) = 0.540556706117907128808005310569386442295480753073770009747909 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 683 gammaK(341,683) = 1.11589779128367926881279519734350493694100042138162612345684 gammaquad(341,683) = 0.144755498437795419728143028718954995309300400358175046337822 S(341,683) = 0.408408576925766509353193833040180125687568337752310259145292 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 691 gammaK(345,691) = 0.678792675360081670873982281945567106301306443703814768285534 gammaquad(345,691) = -0.106832945544632254678907337230184401991160044342038616358524 S(345,691) = 0.441491500743682024973429088297299147043253056314141877949338 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 701 gammaK(350,701) = 0.302510871915868512317522586927272536567103870038026663863503 gammaquad(350,701) = -0.264062651618524501964562435495203602609473786041140952351607 S(350,701) = 0.410637724800005479487252051513105584769465442034684528718976 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 709 gammaK(354,709) = -0.0403874474121361544651303534599708787740203540883411655892524 gammaquad(354,709) = -0.306933548140820865964208370678765850518611102086885771369839 S(354,709) = 0.282104333243699026373475681903018247922806726858616504650346 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 719 gammaK(359,719) = -0.801398019200124517425604036688092745495164669242789988640107 gammaquad(359,719) = -0.465935843425079523701671594192252500114676485350815731919918 S(359,719) = 0.0606561504282755890219291259443853101655566556628746923079403 accuracy = 3.674139745 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 727 gammaK(363,727) = -0.0762499103929235655983582447907681373046848823841387882419082 gammaquad(363,727) = -0.294713937391438510783989003505094429455152265677829054369613 S(363,727) = 0.252051154042405433655669073279928495865462290301709110859128 accuracy = 9.287693089 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 733 gammaK(366,733) = 0.619355496363110610942721136039560246397357125088762875276778 gammaquad(366,733) = -0.0882044592990704532043154701288597977538298983085645903626876 S(366,733) = 0.393375960416495532246530444775152831945419428378502535207925 accuracy = 3.310833361 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 739 gammaK(369,739) = 0.655568310488164636420082060013543395600391803112318519408434 gammaquad(369,739) = -0.130506851436378144781921099393784031385541891372956656091465 S(369,739) = 0.453815872587677128456584650487899537901703429301422041543602 accuracy = 1.180151085 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 743 gammaK(371,743) = -0.427316252324631723877558461104748781212769199725500728391066 gammaquad(371,743) = -0.365114619232345274661061806189276355637916164502137370821711 S(371,743) = 0.147001846139626610050544961863563344489894707294958437994283 accuracy = 5.932737837 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 751 gammaK(375,751) = -0.199188442264078407495335309118939763080795467054548516471068 gammaquad(375,751) = -0.329232994134186508584339943594299676411501193516628916288701 S(375,751) = 0.225224502567637881673835280099585172252252550160780480257573 accuracy = 1.499175666 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 757 gammaK(378,757) = 0.0932767827077118895671547987144195927022693499621212847922540 gammaquad(378,757) = -0.285909228409092914586612438696149510408081333736658414241239 S(378,757) = 0.328163120256707160444077188733324292505336725081843766147826 accuracy = 5.342789491 E-54 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 761 gammaK(380,761) = 0.0626685388033128824241998015873526415931494045730702895049773 gammaquad(380,761) = -0.202478643598974468321082123605113951899195275813763099081504 S(380,761) = 0.229448022633616642535579801538358187420006817398549011887466 accuracy = 2.685529109 E-54 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 769 gammaK(384,769) = -0.270836804289403797836548385205447235718360136635086870460552 gammaquad(384,769) = -0.241662879174485454488776872114151247685456399724135992416506 S(384,769) = 0.101918245929844985274583176356531094901047591780560176016214 accuracy = 6.784494591 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 773 gammaK(386,773) = 1.56189354577670957536665533909459049881278180818754046620677 gammaquad(386,773) = 0.250441857294396397505610950113649557077516933834578105362592 S(386,773) = 0.526197740044355137611903149769275975689364843841972082588280 accuracy = 3.409915250 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 787 gammaK(393,787) = 0.534756300357615892359044197495730758547257614984265384650697 gammaquad(393,787) = -0.210604961760080372015586592860866081243739656599960037018195 S(393,787) = 0.473741236462795822503545983308168855051490027715272175608067 accuracy = 3.068625192 E-56 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 797 gammaK(398,797) = 1.15485483544888632640649047803236209035385239209851715441457 gammaquad(398,797) = 0.0627947550528970874188777528412559647939573190782041334794565 S(398,797) = 0.510436145913512021111430869464271852635276130944319724425660 accuracy = 5.493629654 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 809 gammaK(404,809) = -0.128452300609337550849460178321694491639142782653487786554179 gammaquad(404,809) = -0.260050782242606967884750843025479675102882320130316616391088 S(404,809) = 0.191681192014015858493786067934752116672922316115155021437688 accuracy = 6.970560239 E-58 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 811 gammaK(405,811) = 0.135272267589875330951415543655637558188817086874252670880253 gammaquad(405,811) = -0.349598439855815334811934503968485849693945230944609113257399 S(405,811) = 0.413099840284015091077024756861904072935197795996578672310388 accuracy = 4.941130736 E-58 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 821 gammaK(410,821) = 0.469412476125122910556429338869634375181952777063835542410841 gammaquad(410,821) = -0.197661784205928183065553224834969974393572583066607015444365 S(410,821) = 0.428276239884677182111075852666225112412958532674810027636792 accuracy = 8.842604264 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 823 gammaK(411,823) = 0.782829346795293340608630582610909879003217457076392981545504 gammaquad(411,823) = 0.0813721120735224967339602925151244855144702171428114189086930 S(411,823) = 0.305959254632714763709095951974366112050320668960962695042243 accuracy = 6.267915842 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 827 gammaK(413,827) = 0.517880509152469865072081310342764325921001518185547912118559 gammaquad(413,827) = -0.129450543492344953229253107219205667843301043601242902399652 S(413,827) = 0.384324330335514697318269344807728665889865315695051201934396 accuracy = 3.149208324 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 829 gammaK(414,829) = 0.0135332376538144784067901700876519403476435964489737383598842 gammaquad(414,829) = -0.300488040614250743293545102960692073103445239183858359602234 S(414,829) = 0.303196555482742949299724343354854648359182492182632332626165 accuracy = 2.232218393 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 839 gammaK(419,839) = -0.805943427524659087382649436507201812648354032023258269948472 gammaquad(419,839) = -0.472075563008794932887783315423736823178574424424310101177445 S(419,839) = 0.0650870170827021396873859069503270713714093532405193805587893 accuracy = 3.993699419 E-60 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 853 gammaK(426,853) = 0.699393235794289026683553708328311062504610903330029865202617 gammaquad(426,853) = -0.0526680384616819367913228832811550681349014828499256392242071 S(426,853) = 0.398404116718279690087354549702623408002796890532530265067344 accuracy = 3.588938087 E-61 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 857 gammaK(428,857) = 0.460009389235176578256409415382910384958789481114584193338123 gammaquad(428,857) = -0.0688325057232667315914321140824098585555099220919885688316331 S(428,857) = 0.294892435201487158693116937481637978263479381943791658802359 accuracy = 1.802893781 E-61 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 859 gammaK(429,859) = 0.180500774711647036607102287927855989647195127354126511280811 gammaquad(429,859) = -0.331073065202650080115292710342705458225686948327094002848603 S(429,859) = 0.417386524282258997386607854051871431156025706057036748785695 accuracy = 1.277817013 E-61 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 863 gammaK(431,863) = -0.329009842019778460222232438176661046847129005092112537815245 gammaquad(431,863) = -0.327679732613475732334018657810270213116246373692743072040212 S(431,863) = 0.159253457374419780676827263602906294663736308448040617628300 accuracy = 6.418871008 E-62 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 877 gammaK(438,877) = 0.351041505109546761676973109982267173877038518038772954350743 gammaquad(438,877) = -0.189512361883271255733064858864218110900036211445091125873663 S(438,877) = 0.361165245150160970452720347868134111803150346819425239134348 accuracy = 5.765679585 E-63 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 881 gammaK(440,881) = -0.0533973278411965038708203240027511243344225788981122340306326 gammaquad(440,881) = -0.243563051252383001952280050907877417376366918846823428219450 S(440,881) = 0.213011513680684648023481108889067583372797798733036993654765 accuracy = 2.896003445 E-63 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 883 gammaK(441,883) = 2.06723795163503580968526245789306543223722082613246873707953 gammaquad(441,883) = 0.499447230050574537819652660755329005862262685727485265027110 S(441,883) = 0.530326323317621394226195916898146279669483920043856391703474 accuracy = 2.052437728 E-63 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 887 gammaK(443,887) = -0.706865494733554603128036666318499525005908770385308942158525 gammaquad(443,887) = -0.460668961956319480670729614467845446436935956475894170821835 S(443,887) = 0.103405602297042416414610238050800690278897923656069819526922 accuracy = 1.030872918 E-63 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 907 gammaK(453,907) = 2.11818195720839144439427926403072969810260695160099008185066 gammaquad(453,907) = 0.524068009392462516762904033332965022832787571260050416327104 S(453,907) = 0.531264612451184013048509346499929840076209424528269109423418 accuracy = 3.294197459 E-65 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 911 gammaK(455,911) = -0.724636598114703035657608626935587026957645014777211298549270 gammaquad(455,911) = -0.454567816318593207049159500714273692043168788824002166388104 S(455,911) = 0.0885052629220878659670896095615433742774823244698954604337529 accuracy = 1.654370688 E-65 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 919 gammaK(459,919) = -0.413262215376975263094987169365418814467631803687931277683524 gammaquad(459,919) = -0.415503218243844077323273903701668508451289128766379675002453 S(459,919) = 0.205155723778474263286906344054876557451628701015617642338109 accuracy = 4.172286516 E-66 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 929 gammaK(464,929) = -0.0159364016168983513067185256344304577540476888466692857450165 gammaquad(464,929) = -0.231806605239266654083994020534006569717662058075387952119216 S(464,929) = 0.220156233774128987850197906021127601387322916863852682692688 accuracy = 7.455974778 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 937 gammaK(468,937) = -0.154129716322502842320562762675560245501650758177941312550525 gammaquad(468,937) = -0.230587324976141827833896756401668805421458189372200942725548 S(468,937) = 0.149867187283780138410903654659420024154759116552759193209915 accuracy = 1.880062606 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 941 gammaK(470,941) = 1.17661769425385325343995238999682527635475405109551024517122 gammaquad(470,941) = 0.104180752527445082541393287075343181719297723530020276357838 S(470,941) = 0.480486103567787193309002304783983333962659644798530956134296 accuracy = 9.440485307 E-68 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 947 gammaK(473,947) = 1.70655512973599209910249137151351429556630632420438739820507 gammaquad(473,947) = 0.431968921018472391872441514743265024561734266042501838690383 S(473,947) = 0.417686392743188521186220064944093728926938701358090456496366 accuracy = 3.359020158 E-68 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 953 gammaK(476,953) = 0.119423771809965187550519714476098046719096011678467110310740 gammaquad(476,953) = -0.197093712723951592369590098383393474405080943768527844813261 S(476,953) = 0.253202859708947735455624106718819404973615801899685135221245 accuracy = 1.195125269 E-68 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 967 gammaK(483,967) = 0.500363462973915058269593468665224312156138506673760236114948 gammaquad(483,967) = -0.0464393500513833044769672520458626514630807600950353339571371 S(483,967) = 0.293063007782930225782699604532558914312056997523832769190649 accuracy = 1.071886069 E-69 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 971 gammaK(485,971) = -0.489293358004814204122927482141634916867301958562216956993493 gammaquad(485,971) = -0.521199424566931268145037443949829072628212622720888107647228 S(485,971) = 0.273007216457157503758182149607195543355819649141440460146213 accuracy = 5.381622668 E-70 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 977 gammaK(488,977) = 0.0793203162663381970257366072621105412244277622374673662291012 gammaquad(488,977) = -0.211735571515378313927621166962295737001145190551015807809046 S(488,977) = 0.247868840994836970462849621378022477332513852952607033747329 accuracy = 1.914460245 E-70 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 983 gammaK(491,983) = -0.566552888446574331053106654443063100703577075541646504773315 gammaquad(491,983) = -0.412651423334310852370371099423817194101700509492275468446033 S(491,983) = 0.125866522328871361715477987441870310533998117995835816126571 accuracy = 6.810250409 E-71 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 991 gammaK(495,991) = -0.184507786279667410555029749005364604213633159215055786228611 gammaquad(495,991) = -0.322725035462053392841318853456262838666716673686172206160995 S(495,991) = 0.226986943062457067366910822262282199806347605842850082647088 accuracy = 1.716433712 E-71 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 997 gammaK(498,997) = 0.544317998139059057925298697670273677760188439381638039690051 gammaquad(498,997) = -0.118131623124767390890293126909323197091258635605295149223064 S(498,997) = 0.386824381847930535149006369582460300774680278758333556239061 accuracy = 6.105296584 E-72 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1009 gammaK(504,1009) = -0.394271348372199578127504850937072707049868668726022215004302 gammaquad(504,1009) = -0.278111669162048370820620271696594068033267917872405981817930 S(504,1009) = 0.0775450847475985773141609410567380613757836685047145065149089 accuracy = 7.723678468 E-73 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1013 gammaK(506,1013) = 1.09181504034399163162086231728298849764161063641725215362134 gammaquad(506,1013) = 0.0342231705609255516996419889265315170720843577448476109940324 S(506,1013) = 0.508265045508180598408964658394464500445095118024688396914853 accuracy = 3.877226994 E-73 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1019 gammaK(509,1019) = -0.295691190457388407108142361405961752307449602266146064285742 gammaquad(509,1019) = -0.455400450081033283189120133031415214371958183368155046522435 S(509,1019) = 0.304152803264312201042961788297413377762982019430697826914691 accuracy = 1.379015575 E-73 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1021 gammaK(510,1021) = 0.0513291102205264106159373816631475406931725956981662066253935 gammaquad(510,1021) = -0.290332810743952993693992338282688681051093014268459116717439 S(510,1021) = 0.312601023786488421768786447384368782513589710557703631541827 accuracy = 9.770638804 E-74 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1031 gammaK(515,1031) = -0.800929601943145989736551690174363595969579598471065564965238 gammaquad(515,1031) = -0.481502228755597994922835349035971071284970904165985402117462 S(515,1031) = 0.0776693285199390971781981422471173303832841485426829172822866 accuracy = 1.745193998 E-74 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1033 gammaK(516,1033) = -0.260545717830917678957492954508481482607719573726697151552209 gammaquad(516,1033) = -0.259979029058182349277372562084809992770528060514220351840823 S(516,1033) = 0.126343659256522134533797129215434018766824548983335796468000 accuracy = 1.236803487 E-74 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1039 gammaK(519,1039) = -0.568044264936471919856850368372869660342858531218421325749615 gammaquad(519,1039) = -0.468198102811742781875605454945782916755952435506707639152047 S(519,1039) = 0.180830106185944573684758789098867269901158490166674427320150 accuracy = 4.406335495 E-75 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1049 gammaK(524,1049) = -0.0824618422012396370257257870557160464053293311567979426542746 gammaquad(524,1049) = -0.256745169933943997964889065316635706331580576936414511606501 S(524,1049) = 0.212195740909470984234904085779732137453709685824504563345193 accuracy = 7.968342021 E-76 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1051 gammaK(525,1051) = 1.16995541512687228003574687451774924759780038215583153404199 gammaquad(525,1051) = 0.115102683353833285455337103785949272303259697134917273406411 S(525,1051) = 0.466561930223470973074148341061244071853450532540894382807815 accuracy = 5.682102938 E-76 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1061 gammaK(530,1061) = 0.266309216792092091125369663583491854453513616784875111134663 gammaquad(530,1061) = -0.280252790301778448046559868243812584579773365295148349067689 S(530,1061) = 0.410121093443761294017234383515728407773237675180500729174181 accuracy = 1.117957768 E-76 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1063 gammaK(531,1063) = -0.403536917827837553730535019408645035196482281468601789555552 gammaquad(531,1063) = -0.431498569511699290568319780042937789080584378619702445682290 S(531,1063) = 0.226449107594794662512642322718747396844947107243028832808989 accuracy = 8.288904477 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1069 gammaK(534,1069) = 0.0576646551858969992823671675991549004060734369775168245121679 gammaquad(534,1069) = -0.289624158651794063865152847948049516959232266249906998776261 S(534,1069) = 0.315191280762052935591795406222500023143642859212467016051488 accuracy = 3.762381185 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1087 gammaK(543,1087) = 1.21946512978904539946636387048090808602697305745390192014684 gammaquad(543,1087) = 0.290478219701542594324209423656483024255142627141187211904015 S(543,1087) = 0.316035571303881942681927348595321865049792378396722370258699 accuracy = 1.377268179 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1091 gammaK(545,1091) = -0.581549411076346170832567253381613909744086906438242091649937 gammaquad(545,1091) = -0.555748467860047501876884459346521482064344187421915559798270 S(545,1091) = 0.261765115539382182140182531822177653760787794607135192026628 accuracy = 1.321360831 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1093 gammaK(546,1093) = 0.0841307094445901305685413327543693647041344321435904786176155 gammaquad(546,1093) = -0.294254890556056134958532297465885245441044713708790977535110 S(546,1093) = 0.333116636538343627641765366356546033958176320136795084565893 accuracy = 1.304937950 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1097 gammaK(548,1097) = 0.580880895493134713895578299536942684922742792310249617834741 gammaquad(548,1097) = -0.0159977351212903686123661840136145510855614050578944032856497 S(548,1097) = 0.303244599628681069426072602317867531418181670774717877113371 accuracy = 1.285062108 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1103 gammaK(551,1103) = -0.281338182184197921919180130755643382294191548354774101013427 gammaquad(551,1103) = -0.307159497915383641567701626105471589044025472963260731948965 S(551,1103) = 0.163311736669358409069746562844263287063267695069747760539332 accuracy = 1.272157715 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1109 gammaK(554,1109) = 0.354797617179974895817304737860636232297492387135764633513120 gammaquad(554,1109) = -0.256933949651085468383949849808483759646074163470619102491042 S(554,1109) = 0.431168853012124194706457646995457304400420806434430734516010 accuracy = 1.267570271 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1117 gammaK(558,1117) = 0.236335613599619635723809308055355206132531918872270151737813 gammaquad(558,1117) = -0.235865258258111820795468556244898051157400598993160338613900 S(558,1117) = 0.350888619807442606081845395826453167728115167231633077021938 accuracy = 1.265677225 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1123 gammaK(561,1123) = 0.964698861398495081173018501751036648218684002802828210011939 gammaquad(561,1123) = -0.0119966953946425851838792850731353778199963804783059054411007 S(561,1123) = 0.491216108734381015618634806239669854182439829698028612634653 accuracy = 1.265266582 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1129 gammaK(564,1129) = -0.420810165108440038924776986061112257516884249163866326296006 gammaquad(564,1129) = -0.289673390763526204168665924930625220731135349002063309436524 S(564,1129) = 0.0761525779060483557979226520892029552181097200738527810307187 accuracy = 1.265120615 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1151 gammaK(575,1151) = -0.899842323221107574786112551614980368533261397746728857129290 gammaquad(575,1151) = -0.508380743015418639119564105264738330993192080165968209158133 S(575,1151) = 0.0553950655749857723161124328248908369100053484067372871597942 accuracy = 1.265041934 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1153 gammaK(576,1153) = -0.215375189386090066352357636644289258879125490430729579418479 gammaquad(576,1153) = -0.253697880378588113959832401368514765644502705185689067871067 S(576,1153) = 0.142950336675009635025852548904075702662417522003451914931628 accuracy = 1.265041405 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1163 gammaK(581,1163) = 1.00459226995588611239350898646814558619784563176536472417264 gammaquad(581,1163) = 0.102100586866482229163350998317387640558669558313105223437250 S(581,1163) = 0.397158216720531969707759059318239257638095637902140378174026 accuracy = 1.265040349 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1171 gammaK(585,1171) = 0.368598851851211400357667668091486973840491007132406946993901 gammaquad(585,1171) = -0.265250326167597612221647886012254647297069536546286964957777 S(585,1171) = 0.446530259202776937468074355451186216424427208336177240859635 accuracy = 1.265040178 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1181 gammaK(590,1181) = 0.619499380368998285729524312054427859661530795178687685410572 gammaquad(590,1181) = -0.143546249456019601840108265890532204632249669641562527193297 S(590,1181) = 0.450298432515011387795955671545386125818037658250646992837297 accuracy = 1.265040130 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1187 gammaK(593,1187) = 0.369585558957146569070566082782503279451149699877632020214185 gammaquad(593,1187) = -0.194017523979289595011257778197479854453997458661771630338619 S(593,1187) = 0.375825824370759309547761194530218658520937811168999153140490 accuracy = 1.265040124 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1193 gammaK(596,1193) = 0.325699518466995943325386712661374658540586159556971994846282 gammaquad(596,1193) = -0.122327204934247223352285701358988310617954582534596693996263 S(596,1193) = 0.282205392681965867786320571166112637043709722053560547623967 accuracy = 1.265040122 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1201 gammaK(600,1201) = -0.438769943841476280051081306392498235004804309689059427368835 gammaquad(600,1201) = -0.296909475270553794966070916080116251364382406587031990715925 S(600,1201) = 0.0745699575906156617984499138379430814719574258921770255767956 accuracy = 1.265040121 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1213 gammaK(606,1213) = 0.0497926096555254341113928107277882441646620818241855342549496 gammaquad(606,1213) = -0.308711438690490650297946236043716362583802171807792485713873 S(606,1213) = 0.330678349166378759213897426406649765837389531888018255357780 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1217 gammaK(608,1217) = 0.655602248160282654907479385900577448306397974368079942401870 gammaquad(608,1217) = 0.0176926713702802402844981993442805444397702903872694759246048 S(608,1217) = 0.307187340829520821062010353791247200673072986605055260546966 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1223 gammaK(611,1223) = -0.771697249804006877676413479229964858539506413478030481579486 gammaquad(611,1223) = -0.489242956357854308196043970138103589864781915706206365338229 S(611,1223) = 0.100485549894604072158466717807275612076238360644790242467652 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1229 gammaK(614,1229) = 0.661280156585077299765881615152726550905525727506388500277814 gammaquad(614,1229) = -0.112645584766935149970340758156436564295354446265002320594034 S(614,1229) = 0.440389101125611407825157454114987681339489644949651773904430 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1231 gammaK(615,1231) = -0.678083131152736991552928901801244066258409271143650839532172 gammaquad(615,1231) = -0.510573144549159072246522221511409950743925435648419516241711 S(615,1231) = 0.168639065913366001872354405479213860688691404033218922934675 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1237 gammaK(618,1237) = 0.461513431882506290454884499831286542611429732810395067748401 gammaquad(618,1237) = -0.151844394808228518253701461520614852125720308172598699185798 S(618,1237) = 0.379720672087510592324415060508059184361058541891669495103307 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1249 gammaK(624,1249) = -0.385163348053471511567096246482734205544513363688398323319033 gammaquad(624,1249) = -0.290059317165068675478916772124067428642372568263554373022815 S(624,1249) = 0.0946210331583146594086803948199083129484664606416592689119089 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1259 gammaK(629,1259) = -0.305878450023309671879399062090536403346367866953445423671617 gammaquad(629,1259) = -0.448101091092045871756608740588910899671540810083192904386003 S(629,1259) = 0.292324794127273250774591982909587605024259950675890080583113 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1277 gammaK(638,1277) = 0.769988042075302997486101427171720157321493992090978641713754 gammaquad(638,1277) = -0.113353615502843639456077891240771164315318671263106085627773 S(638,1277) = 0.495545023352394613398535740455866838306339224711128111601711 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1279 gammaK(639,1279) = -0.428436355240644342146370213208384267254433485512305856168737 gammaquad(639,1279) = -0.414019274751189128688934677819114396972917236751543585306420 S(639,1279) = 0.197002257615382277377081914262478396089194628921392311982596 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1283 gammaK(641,1283) = 0.00827725053578276506212793452448818828612495359307174766886581 gammaquad(641,1283) = -0.358592224096535499357634659545681884246973451883348745606326 S(641,1283) = 0.359939524729241376261630201995321035733273368939907261199244 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1289 gammaK(644,1289) = -0.156185960677019092736260139428066703819880676161294546551178 gammaquad(644,1289) = -0.279503781878122134043919438398563282955549819021759857452068 S(644,1289) = 0.198630668774496443503579412146773256322761733088614940420101 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1291 gammaK(645,1291) = 0.0734357169931121161487573496451957054455405702456222234263237 gammaquad(645,1291) = -0.378362963669741872045608881892526890597103708227667946855219 S(645,1291) = 0.412304398758993029926318804393402846658677113557059070665388 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1297 gammaK(648,1297) = -0.323666958593176423119327337479390154547143155268704060070623 gammaquad(648,1297) = -0.285222096275260185135230867079912319816670822285878285577574 S(648,1297) = 0.120623258497068407263059314266594686108346074234743203871953 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1301 gammaK(650,1301) = 0.284046962192771473954012287873928580851428444539330938308858 gammaquad(650,1301) = -0.288173293848080739579882152742208143201410931907974153350463 S(650,1301) = 0.427438740914269359143528649567673032348486927579338993455755 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1303 gammaK(651,1303) = 0.912326375802910907082831274196142447937110438857558195112888 gammaquad(651,1303) = 0.147542257815619145428653885438882030002541478430607802110386 S(651,1303) = 0.305866542767431989711148153273037633759372440497380201513979 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1307 gammaK(653,1307) = 0.106090361561593130529602801899261232324314351807311873856940 gammaquad(653,1307) = -0.302822185948220100170089803209245477934712527571395533116710 S(653,1307) = 0.353120242030079367598900257105854702116201205462920880843233 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1319 gammaK(659,1319) = -0.943012222614763954362675708872102707084595107754047658018247 gammaquad(659,1319) = -0.525982035459661107953406545998858572003917653459013505495731 S(659,1319) = 0.0517503440488203619562211184916231477368789626176472930898151 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1321 gammaK(660,1321) = -0.395503986974259885277417626227239040284934701982716966605058 gammaquad(660,1321) = -0.294162264458328802083891962643242689493237110775941961370739 S(660,1321) = 0.0936882466134252513698704212318335316340118735554404315236721 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1327 gammaK(663,1327) = 0.159094492595537796576853611574294117409406289308830243336579 gammaquad(663,1327) = -0.200055537264579415045176225788104405703235525412301821776682 S(663,1327) = 0.276891367259809773548767756288114600080297608192716366492650 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1361 gammaK(680,1361) = -0.0349589294541963324978582954962081846815711419936764479303649 gammaquad(680,1361) = -0.243980923887264600263575068493298265824451841334267774201616 S(680,1361) = 0.223848527173897512664719875973675326800254439638301291356296 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1367 gammaK(683,1367) = -0.240185272901244703106666680900182834280697292239042561924343 gammaquad(683,1367) = -0.288731227094966429604168913702664157489535587403646664878427 S(683,1367) = 0.165995701245836043804697734240222455888025986213357185350675 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1373 gammaK(686,1373) = 0.519049629255462197665177666199676029671198465748801154089248 gammaquad(686,1373) = -0.210133831793990125774299235652543790371544935114991902389373 S(686,1373) = 0.467025718795712488801710357348075796590800856800289256541990 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1381 gammaK(690,1381) = -0.149832506733227208652622762797701439175469367266201548242285 gammaquad(690,1381) = -0.359224091514569817866906964801322814644988534030705290740258 S(690,1381) = 0.281688068889474585961481201834301331947424885106497278681765 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1399 gammaK(699,1399) = -0.602470345682528170794109557844919428547987612568878297622287 gammaquad(699,1399) = -0.483344975107914757431889908101882843051347995481428594412862 S(699,1399) = 0.179519132390160871900574553224801364955991497301807917370578 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1409 gammaK(704,1409) = -0.262614293574521714066287839967100438945602200801625359654112 gammaquad(704,1409) = -0.316760792723060091787142951173437046731031111846808294352179 S(704,1409) = 0.182878846393221578426952901765315554081700603807828742415069 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1423 gammaK(711,1423) = 1.74386163738966462299128190642961378499873612847795104385248 gammaquad(711,1423) = 0.546156928068310428373096673655870078183750363108996962998555 S(711,1423) = 0.323220964255885507465320593434665473433513919994261936405459 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1427 gammaK(713,1427) = -0.374022848326005947683700593676789918059527711559086953244278 gammaquad(713,1427) = -0.508831507765813570418310167983162867043321120047624974589369 S(713,1427) = 0.319273334087566264031963935806200956457273889681496313397547 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1429 gammaK(714,1429) = -0.189010624942608084782604788192990920060663159511152211504459 gammaquad(714,1429) = -0.374186200122611611624478905101297992705919986405235974036800 S(714,1429) = 0.277137214619819520421393425708398843887061048428186173889112 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1433 gammaK(716,1433) = 0.331462695131537679421697153457391274186922230530957274182836 gammaquad(716,1433) = -0.119634280272389382957523399927717146803984047934898556814172 S(716,1433) = 0.282828084043525481100607786571856378316203037165161103069458 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1439 gammaK(719,1439) = -0.764233504017741451883960236713692884842219234217145332238332 gammaquad(719,1439) = -0.474946760342073231913203316221180598860673151176569947222926 S(719,1439) = 0.0903015995338675380237498666523034610382767347998454492571219 accuracy = 6.187747929 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1447 gammaK(723,1447) = -0.490008241208837798649724819217627686453858454075134309007885 gammaquad(723,1447) = -0.470625189984342873141092710951690296890691636346350040849175 S(723,1447) = 0.223104731991738813421599285015173787191019531496020074835411 accuracy = 3.111086059 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1451 gammaK(725,1451) = 0.0308205580757702367500083838843272347404094612861746263148474 gammaquad(725,1451) = -0.311806456292051254870303810748467565456302799495672435246582 S(725,1451) = 0.324706387656528032608566607300052225501158424485675677519275 accuracy = 2.205955443 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1453 gammaK(726,1453) = -0.0522666672574224526029329659544854970316099060802009275428446 gammaquad(726,1453) = -0.350724922265347281638408359234760408728324788433845825384885 S(726,1453) = 0.322084224427417638359072476883430929282000007162911017820885 accuracy = 1.857538618 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1459 gammaK(729,1459) = -0.181632549952581827262646881380241417160578356072703020112447 gammaquad(729,1459) = -0.488031738145382225567198248340957110542801763051352822629978 S(729,1459) = 0.394717004133246735239717448485078406776328718636138015380211 accuracy = 1.109063116 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1471 gammaK(735,1471) = -0.375425838132323429519429124485069361620045268825583440282568 gammaquad(735,1471) = -0.403204503115614120009908455461969857673867366703869515277991 S(735,1471) = 0.213010734484621984325689328998283510590701315875732878478074 accuracy = 3.953402928 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1481 gammaK(740,1481) = -0.245103821264548979984092802773883850635074862542013075632280 gammaquad(740,1481) = -0.312726822566159113008373216664452294924316967848693405827148 S(740,1481) = 0.187708535983118474778995117078578285573149400696534965087433 accuracy = 1.673508666 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1483 gammaK(741,1483) = 0.436435728521238036775291311281957041627438606044942630797853 gammaquad(741,1483) = -0.259502363099447814100565830357693686370052899383556701311446 S(741,1483) = 0.475256724545580350674698248896986012541492604157813983116258 accuracy = 1.409149124 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1487 gammaK(743,1487) = -0.736960596744798974128155156555296426841509668438907706661394 gammaquad(743,1487) = -0.479794979654427398215623793241393007604680210888540986744398 S(743,1487) = 0.108856903372720994908838046281051657863807539483340392531767 accuracy = 9.991082909 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1489 gammaK(744,1489) = -0.428269264438539599446244515156087832515968283138127526252112 gammaquad(744,1489) = -0.307661938511976001385252569019328445132159927292454625483687 S(744,1489) = 0.0910723802064548545569797613377258305051224249566154527259113 accuracy = 8.412773293 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1493 gammaK(746,1493) = 1.37269167523265905312693183884506292680926147304965951770150 gammaquad(746,1493) = 0.179084704071817614921729568791402931208687292481503129903394 S(746,1493) = 0.504811889979652933630502049775765147076191654078190218852714 accuracy = 5.964720251 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1499 gammaK(749,1499) = 0.0495127311450578991777445778471594698592492955845406899036153 gammaquad(749,1499) = -0.305642656236715957672186311516836898586173150764275444025376 S(749,1499) = 0.327958249613616536865872954601197176149955561582707914199948 accuracy = 3.560906524 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1511 gammaK(755,1511) = -0.981684153417105545347443188266429166340996274315305441141192 gammaquad(755,1511) = -0.543410334483460302998343852324759853337580947127774452923894 S(755,1511) = 0.0501442422244860933811633014620635918796315360986732191828492 accuracy = 1.269055787 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1523 gammaK(761,1523) = 1.42865941375953946291327879744673505208236556114941948685814 gammaquad(761,1523) = 0.303288833616489836443740471685400866345704374191665801473532 S(761,1523) = 0.408633370847742719647993563058437727433447390394330991864133 accuracy = 4.522446370 E-54 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1531 gammaK(765,1531) = -0.131857615116751413914370061494981251299951410047414408844329 gammaquad(765,1531) = -0.465148848853444402844149285216227067306677185283798437607736 S(765,1531) = 0.396823415021977949562066721224211106893313697581222049964020 accuracy = 2.273108721 E-54 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1543 gammaK(771,1543) = -0.104530385672068162023748813232276983920143525421573090915928 gammaquad(771,1543) = -0.306680229886003016539006016238853032388044553461870452073883 S(771,1543) = 0.252034529964248066253653293198212728241488403308252205382862 accuracy = 8.099685526 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1549 gammaK(774,1549) = -0.189179369130479405459057342738354099233269825859582502955092 gammaquad(774,1549) = -0.374083488003901933507281171734270855407466345984653991552543 S(774,1549) = 0.277121269575478487679850808995799856301641968462362000711145 accuracy = 4.834841524 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1553 gammaK(776,1553) = 0.790328573904055184086189918029143877889030989846310205700581 gammaquad(776,1553) = 0.0806519047710146593286928912876850055219856730272417385051470 S(776,1553) = 0.312145132237988226828619062263974413207519969534418274286818 accuracy = 3.427583205 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1559 gammaK(779,1559) = -1.00555063023347635409498949738768242748875748521973047515789 gammaquad(779,1559) = -0.549992970638271870789044583827935121375816483091206289215551 S(779,1559) = 0.0448582845751095035876992210524016222021336588858827557510014 accuracy = 2.045932239 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1567 gammaK(783,1567) = 0.446931122945202542205140305945297130096320774828438374266450 gammaquad(783,1567) = -0.0558780666743083682106338508311806920594760984101665000313268 S(783,1567) = 0.276994675962249351692517931006982014898955971774756118929601 accuracy = 1.028218834 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1571 gammaK(785,1571) = -0.344738722893788868558425321390294820174013452659232716340554 gammaquad(785,1571) = -0.465909028339001838281477331951090602306622453994192171303038 S(785,1571) = 0.291195887389478225289830596217406534834297223601389793901592 accuracy = 7.289176249 E-56 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1579 gammaK(789,1579) = 0.135523706944094187848770585182677107141960056947031627517579 gammaquad(789,1579) = -0.371064467840387220575870452310458268328385307049630836135296 S(789,1579) = 0.436492814653924922202851961631155397663122312222517606581850 accuracy = 3.663159274 E-56 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1583 gammaK(791,1583) = -0.573831119508374764485627346143134412925756148737392494109257 gammaquad(791,1583) = -0.425826847318536382229848497187041070887663165284682730118892 S(791,1583) = 0.136582881413944128890865407542211812467212175742752817078422 accuracy = 2.596810656 E-56 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1597 gammaK(798,1597) = 0.260007934755187632958188200247136021818096920113990635986948 gammaquad(798,1597) = -0.227700920604866064915522429689195765195191704334134766033324 S(798,1597) = 0.355394147961089263464225253160992653200982094699808332833234 accuracy = 7.788686079 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1601 gammaK(800,1601) = 0.0830741835978462579974681302931467234649075873892998596114502 gammaquad(800,1601) = -0.198809545625379069333056619916108416601995315116753696956719 S(800,1601) = 0.238040892513990724992375326932015616034914993706271096874176 accuracy = 5.521235833 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1607 gammaK(803,1607) = -0.230779065700588037442988101689337912501916117643466662845882 gammaquad(803,1607) = -0.283610213359606575179849940909661066452328744784923658492190 S(803,1607) = 0.165922385252233629750260139626866371680645502191047860910937 accuracy = 3.295257517 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1609 gammaK(804,1609) = -0.466142362610458367145469601635477497643543127027495260862601 gammaquad(804,1609) = -0.320853895679782398160072992321055305705691126726499176001532 S(804,1609) = 0.0854868909457620506540860171117211121217058602386091628633885 accuracy = 2.774421006 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1613 gammaK(806,1613) = 1.24297808582799898999888033329645918183241323651919569792816 gammaquad(806,1613) = 0.101308105855033655129052695441307693025002989456280964293209 S(806,1613) = 0.517890040322574646054784581523408967634672172031211205062768 accuracy = 1.966692036 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1619 gammaK(809,1619) = -0.151497136773235837531252592144001701192472532798505490092092 gammaquad(809,1619) = -0.393091650787093778648513644887785908574762839899388280112514 S(809,1619) = 0.315059533589079804527441732469427805966669093628945012957034 accuracy = 1.173754695 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1621 gammaK(810,1621) = -0.248427100737431674986661460575073678505139589792456010697365 gammaquad(810,1621) = -0.395390859066514609225286074118402765455920468967655309628608 S(810,1621) = 0.268896198042942081576841305116154629411332398608587666093424 accuracy = 9.882261473 E-58 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1627 gammaK(813,1627) = 0.587278700039891248626957758196839457493027773081250533409627 gammaquad(813,1627) = -0.185011066798477903505174031344354708029344002757524872790976 S(813,1627) = 0.476376587449659986060184456315257735418287273280540624111881 accuracy = 5.897790894 E-58 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1637 gammaK(818,1637) = 1.09911727349816665462478132739322724780907727018148659235916 gammaquad(818,1637) = 0.0377974564580173621279715455409157352350295335215317001277805 S(818,1637) = 0.509499376936123686790989928308326461163979879671289960793132 accuracy = 2.494966014 E-58 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1657 gammaK(828,1657) = -0.165831845486917247903081537788913429165726903827700001445599 gammaquad(828,1657) = -0.243166822201167928253204419086609525038559225983442491970327 S(828,1657) = 0.158012746070805148833093443363382723419263087266335493371708 accuracy = 4.464436787 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1663 gammaK(831,1663) = 0.125895660900773971514392691434798566961045489808679124435043 gammaquad(831,1663) = -0.215241268345763539299181242138485564641301247471059639357143 S(831,1663) = 0.275957938002169499883173676289400674492316054094581223632729 accuracy = 2.664188003 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1667 gammaK(833,1667) = -0.0803484350015012930272770812202631631237260667931089545983149 gammaquad(833,1667) = -0.399257118514303967674280871936575201110248629206458187046139 S(833,1667) = 0.356856376138778172900741327586292057110470981588977401522410 accuracy = 1.888399375 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1669 gammaK(834,1669) = 0.170789289437268611969019609349306876489023506687635785924029 gammaquad(834,1669) = -0.247824017512626665782036937414224340776606229309895959344114 S(834,1669) = 0.330994447625846752618968583658088445222339496281569788720420 accuracy = 1.589854566 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1693 gammaK(846,1693) = 0.766781783162599354188746278579459648841035935983623308063723 gammaquad(846,1693) = -0.0159229678240912755020620538338991741754481821922690096241936 S(846,1693) = 0.397116974836202673838878935441852864777258346961897649601641 accuracy = 2.015912714 E-60 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1697 gammaK(848,1697) = 0.424689281541624607676921744115569303600779595086230488710151 gammaquad(848,1697) = -0.0797949773546477441852759826781071464961706424245018208499095 S(848,1697) = 0.289947219167549014322275765729916616062613749921744322160199 accuracy = 1.428835445 E-60 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1699 gammaK(849,1699) = -0.0728579989723572906749921829739320521198426684879941494399065 gammaquad(849,1699) = -0.445170236487532071839510585220657150464401589126177236472174 S(849,1699) = 0.406551073537963576082810341970040345850919568931221587011171 accuracy = 1.202919470 E-60 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1709 gammaK(854,1709) = 0.281232701546478001670922332766353796631996064654165313164970 gammaquad(854,1709) = -0.274918995569015321386014690994980087618288388865769324240002 S(854,1709) = 0.413356287887009711305276690753381633811026339170430555028742 accuracy = 5.087439295 E-61 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1721 gammaK(860,1721) = -0.111005116362487984116479925578323894954759357451564195668162 gammaquad(860,1721) = -0.274442748302399238507152835060239078971172925745721750194676 S(860,1721) = 0.216774300354814682664462197452953538337789753413326735674054 accuracy = 1.811318518 E-61 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1723 gammaK(861,1723) = 1.43537157706633585133684392754814480484015767208256033463198 gammaquad(861,1723) = 0.195648730702574661446290925089203339970395253607768180680951 S(861,1723) = 0.519873346379801182450473367911444013778161858765548875601268 accuracy = 1.524902332 E-61 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1733 gammaK(866,1733) = 0.507429346995090076741782081286072046892134122290747838135928 gammaquad(866,1733) = -0.218835783863776944662041116325509246080660992370759320514351 S(866,1733) = 0.470397567843505699522558247178626509223097646751304554500532 accuracy = 6.448656952 E-62 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1741 gammaK(870,1741) = -0.0620254389765016292578602820243411165382114829682787769545565 gammaquad(870,1741) = -0.338885462235077247267565837661041690259458128185647115441605 S(870,1741) = 0.305728428108962010500125139346885235382784158140076934313225 accuracy = 3.239221448 E-62 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1747 gammaK(873,1747) = 1.35341288092384300755010561728699479497519245739354328512169 gammaquad(873,1747) = 0.148171177704865377863714932905408002418909341849287158537526 S(873,1747) = 0.526397331683134574775945534063041679894586820489467834916477 accuracy = 1.932694157 E-62 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1753 gammaK(876,1753) = -0.249828306298865664956038308880629077180280131471691822758658 gammaquad(876,1753) = -0.273104951531075479557228398101919085491064481400973753386676 S(876,1753) = 0.146059210514941381525964899694074563784385471795354827405984 accuracy = 1.153135917 E-62 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1759 gammaK(879,1759) = -0.499952387054758954092330079907332564317872253353361059852548 gammaquad(879,1759) = -0.455601844740903070398237423858754978723048286207027581306311 S(879,1759) = 0.203500366587602786136599385989515401410840854205031847860642 accuracy = 6.880068649 E-63 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1777 gammaK(888,1777) = -0.210594968360309460256724202392810383133922072417360501484803 gammaquad(888,1777) = -0.259809714285249389255365611645542206019132404625477582296952 S(888,1777) = 0.152405619230051119900320206886732436554296801362674772404058 accuracy = 1.461165374 E-63 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1783 gammaK(891,1783) = 0.302303508251886190263917907740179389133635556282365567296326 gammaquad(891,1783) = -0.121837161652944737517124829081880850940992854456996441245171 S(891,1783) = 0.270888452081395369010410423409557353451919870037960359873876 accuracy = 8.717493126 E-64 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1787 gammaK(893,1787) = 1.76210222654676657219596383923895516654265907724091527129235 gammaquad(893,1787) = 0.466913885323487393880517740613116385725637260239870917850009 S(893,1787) = 0.412040841187533230391941206969842305391500499838816503595103 accuracy = 6.178035089 E-64 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1789 gammaK(894,1789) = -0.106210617427459759121725709925021262581576984606176391897779 gammaquad(894,1789) = -0.347323174485179459097327367056169012086841184265755674001308 S(894,1789) = 0.292123511161967275520835209094409881588125712556535698272419 accuracy = 5.200905127 E-64 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1801 gammaK(900,1801) = -0.526763228291854439920998572132547776328008237518741383855262 gammaquad(900,1801) = -0.336450508009198055415986090469851350038983850210909580923885 S(900,1801) = 0.0709866446007219587670301302280190645854400575399734812407342 accuracy = 1.851138566 E-64 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1811 gammaK(905,1811) = -0.697280327637450618219247671284030028286552625170937817256424 gammaquad(905,1811) = -0.607705693040976617147418151522693634450265187419209397632742 S(905,1811) = 0.256993254510128818153268853402997079021963562373670485494575 accuracy = 7.826318247 E-65 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1823 gammaK(911,1823) = -0.877763355159154480894190448113657033517016195589243642043338 gammaquad(911,1823) = -0.535236053303077609184900759014956390408929683478973138866156 S(911,1823) = 0.0942939369818212625254489178830852013893230978812730720785703 accuracy = 2.785366245 E-65 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1831 gammaK(915,1831) = 0.225984449000939008755119207925555119341084280883444047396966 gammaquad(915,1831) = -0.136782828899429897607393963526353075706981763721049934208054 S(915,1831) = 0.247722425655452814358889931349287858988839873314178636717883 accuracy = 1.398798087 E-65 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1847 gammaK(923,1847) = -0.808706103432190124720882580101701308790737706280650788106772 gammaquad(923,1847) = -0.509061789813623723959201163691612903503192314386189825486984 S(923,1847) = 0.102671544711775888044748353724302900397269400946303540581426 accuracy = 3.527570039 E-66 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1861 gammaK(930,1861) = 0.176235961144085463462374169838144766568688454119585517968715 gammaquad(930,1861) = -0.245414579984361046475613730027301385008826598903212548419541 S(930,1861) = 0.331508670971284893594653506856948427148562372584282876177258 accuracy = 1.056706552 E-66 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1867 gammaK(933,1867) = 2.00017850099237549115161543140442437818037055671680990174523 gammaquad(933,1867) = 0.498807426581753620402878040380430001123674157092172242847853 S(933,1867) = 0.499263579502981359199178678133974323558093592875652241029079 accuracy = 6.303483188 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1871 gammaK(935,1871) = -0.798973629197896223028331257196636495455845900551439187227750 gammaquad(935,1871) = -0.490670449731194519003441165663317679044292960490691776690114 S(935,1871) = 0.0891691355797667043834761577878083455040322261510679453866142 accuracy = 4.466790339 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1873 gammaK(936,1873) = -0.445688025715150034698021005552629355383860902657767052976088 gammaquad(936,1873) = -0.332536813379934865200512596319393796849579443018172777947012 S(936,1873) = 0.107680167856108755834038308688196249865873668800874966642318 accuracy = 3.760125211 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1877 gammaK(938,1877) = 1.91701380531326069459999675068402740373227313929792909946105 gammaquad(938,1877) = 0.441150475289559851393087866447266100765552202077018873547543 S(938,1877) = 0.515347517442607140678017223086877093776475040869722983215935 accuracy = 2.664491253 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1879 gammaK(939,1879) = -0.385211401722598163047071293469781356487787384470263469992651 gammaquad(939,1879) = -0.395649052553943179150753148377516123418475945748986900592343 S(939,1879) = 0.201036297645941897064064938088306420966775526507528914417756 accuracy = 2.242949801 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1889 gammaK(944,1889) = -0.0679635510044713796706857908316083278577686603301016733067839 gammaquad(944,1889) = -0.259591792977892391047818983757985634616835054896503456044927 S(944,1889) = 0.223612188326424309911574209047205481071073167724526655239554 accuracy = 9.480657585 E-68 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1901 gammaK(950,1901) = 0.0963560216594330497954324874340170141944213147077105051465653 gammaquad(950,1901) = -0.352749459068082677358542992363356770299334463291554963939649 S(950,1901) = 0.398940592176091720897985279278501596989117832578118970005715 accuracy = 3.373223203 E-68 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1907 gammaK(953,1907) = 0.169170173355024991341605846645619780357370254921818538035546 gammaquad(953,1907) = -0.270960374813194504522684508454611031489310890886693895192968 S(953,1907) = 0.353564011699101433806754445631861645197877364048514561573348 accuracy = 2.012064403 E-68 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1913 gammaK(956,1913) = 0.177515860879637759807747870572972788451377364601266067397596 gammaquad(956,1913) = -0.176651233704799304893130166544097383073032548145801202428667 S(956,1913) = 0.263433110805329415739618689654175525388547514455618437630084 accuracy = 1.200146803 E-68 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1931 gammaK(965,1931) = -0.517849980150033880224516854502652336150419251496182725525680 gammaquad(965,1931) = -0.535994824744681896560045989766372261150346682723457303563425 S(965,1931) = 0.275109784596496947525053282054249274783125772419343654546073 accuracy = 2.546749944 E-69 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1933 gammaK(966,1933) = 0.239650547589485489560231589393104781495927503193316603815711 gammaquad(966,1933) = -0.235271830793345937548743262726243972863299523156208684586590 S(966,1933) = 0.353138815644194186754998717378171845309770228219240319475440 accuracy = 2.143772126 E-69 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1949 gammaK(974,1949) = 0.802547930586790063230509136182162288742911121297388486936231 gammaquad(974,1949) = -0.0616935852833978249543820051565907820497696780864168069299278 S(974,1949) = 0.461023230325379211597593735426219899440307072566300197918664 accuracy = 5.403814926 E-70 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1951 gammaK(975,1951) = -0.687826801187200353297118288923815749348494523269663130950281 gammaquad(975,1951) = -0.522673455807392134519427202718575287783947826499082501161986 S(975,1951) = 0.176817466152093724227013409951130361868363687259540655009441 accuracy = 4.548713968 E-70 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1973 gammaK(986,1973) = 0.518344151239788061962357156518302595899683326216010636443980 gammaquad(986,1973) = -0.230849824738668971009563968371484322365062101265738969526212 S(986,1973) = 0.488098140088273292217386521715312093371059446425988487350390 accuracy = 6.837990732 E-71 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1979 gammaK(989,1979) = -0.635811892844170793313070493362015600255781856428142136842287 gammaquad(989,1979) = -0.583213764748620194976482936239344504241388737044271536893263 S(989,1979) = 0.263389125974259124475872335512687885832876081977090697101304 accuracy = 4.078264999 E-71 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1987 gammaK(993,1987) = 0.895890549615990408485467168890955525943243153947557521530449 gammaquad(993,1987) = -0.0360158338239254744062115487331111384657239295257943007131895 S(993,1987) = 0.482049129467129183974144783792709080768452634064696618753180 accuracy = 2.047380379 E-71 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1993 gammaK(996,1993) = -0.233171372755777972780356047421816241131521751619212832930780 gammaquad(996,1993) = -0.269434984674828609505967282084763468369893417319999587335729 S(996,1993) = 0.150942321308934403557868831865202501209557627413915978099815 accuracy = 1.221058052 E-71 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1997 gammaK(998,1997) = 1.34740145739604082410346398251339958302413051574410650825146 gammaquad(998,1997) = 0.169246641629922989233553074099420632769317274175914715963091 S(998,1997) = 0.502550429419446166501590659409431853263428034732196141378159 accuracy = 8.651525693 E-72 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1999 gammaK(999,1999) = -0.394040109769467813627410826003058468632446796458172609601549 gammaquad(999,1999) = -0.410617764082522196040048097758975867359081416659916688310698 S(999,1999) = 0.211695706611576977899127485924709393572255578142927230411365 accuracy = 7.282328560 E-72 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2003 gammaK(1001,2003) = 1.10178642701757632473140293140953656794436616714468063761728 gammaquad(1001,2003) = 0.151077350506761006565333171257159397002348449537961769945669 S(1001,2003) = 0.397917161369742985407429931152309686325759848424055007689189 accuracy = 5.159696672 E-72 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2011 gammaK(1005,2011) = 1.13865939445646650095252796274511915705165788740622155706491 gammaquad(1005,2011) = 0.100779474027090059160081199391279223334940762598916487386874 S(1005,2011) = 0.466658087034533078866740157057487271278671389140400628713808 accuracy = 2.590163720 E-72 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2017 gammaK(1008,2017) = -0.404495443980010480688120990086884822799375866622254681520294 gammaquad(1008,2017) = -0.321268277625066533835092522298468095585098713461972548352095 S(1008,2017) = 0.117133311950052808428435645083945748578169785512251237678758 accuracy = 1.544723043 E-72 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2027 gammaK(1013,2027) = 0.511880546928118198207502201890572035540243774548304144043514 gammaquad(1013,2027) = -0.129983564932740348437603070564409599929904181427805310640866 S(1013,2027) = 0.384044689298464797976712250911175826399082323218384516719622 accuracy = 6.527049473 E-73 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2029 gammaK(1014,2029) = -0.0425458339279256575149003319079264478015625195898956027614119 gammaquad(1014,2029) = -0.332090982883784119576350067224519112644482241735682137241908 S(1014,2029) = 0.308940526881402697440465411963012196994960207217401963846715 accuracy = 5.494010663 E-73 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2039 gammaK(1019,2039) = -0.748469522027836648177565317973904936037899037925568407561136 gammaquad(1019,2039) = -0.472827245890197672608610199483581155704442083706849365901595 S(1019,2039) = 0.0967229523025368423432215535761573851460644666651634729564302 accuracy = 2.321410260 E-73 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2053 gammaK(1026,2053) = 0.0162665977543717642725190856968828922318102744815180308793931 gammaquad(1026,2053) = -0.330364541014025361556068150922243644840984161858876365823430 S(1026,2053) = 0.336639395101489281321145350292851399996828356420882543911329 accuracy = 6.949890714 E-74 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2063 gammaK(1031,2063) = -0.802950148423893440083301633963912456418296359355221041044026 gammaquad(1031,2063) = -0.507870045308954880009215945769148839212915690756069961631294 S(1031,2063) = 0.104544360885303200747616763986673753095660203770615810834813 accuracy = 2.937039761 E-74 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2069 gammaK(1034,2069) = 0.349136704567522867637478315917676248497572675533850047782268 gammaquad(1034,2069) = -0.245259543858511955799248129670446723783135303849958109682226 S(1034,2069) = 0.417981953038369728343647457938887075886939662646650625153830 accuracy = 1.751966538 E-74 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2081 gammaK(1040,2081) = -0.245657552447108686146236846424139598306963491679378388344048 gammaquad(1040,2081) = -0.318245915498344565449587169924872344014940091646044835625361 S(1040,2081) = 0.193580455662676367947369028681944580481437130892369769519006 accuracy = 6.238231721 E-75 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2083 gammaK(1041,2083) = 0.596514422259908060426916844309970083191754717766406516233774 gammaquad(1041,2083) = -0.213028055267177341596276035978091771537041982107967785585675 S(1041,2083) = 0.509450116435253136460591452393224013866956066158306988369960 accuracy = 5.252753136 E-75 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2087 gammaK(1043,2087) = -0.458201027156752092427642836330085050426199694742568511263988 gammaquad(1043,2087) = -0.379091820185637564438688348054046580664440115576881022218640 S(1043,2087) = 0.148159215785814442302338038331038525707501511023490853516121 accuracy = 3.725081335 E-75 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2089 gammaK(1044,2089) = -0.477727295675331750753039225365797669479101772248809444393624 gammaquad(1044,2089) = -0.333313882416352269598325553770749516913698392828565060071036 S(1044,2089) = 0.0926196692622216993496135630219375549130687777142929499101495 accuracy = 3.137413333 E-75 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2099 gammaK(1049,2099) = -0.287654787155821440350459278831355811508334978062805546013829 gammaquad(1049,2099) = -0.440471053187699173858649246253592002603530460817923561365332 S(1049,2099) = 0.294820681459211563076128717226742631443582643036359684429542 accuracy = 1.332743525 E-75 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2111 gammaK(1055,2111) = -0.837942651452077859055169436013272233117053385567670385333235 gammaquad(1055,2111) = -0.505885414604106065755031918968161175486949552205815839823108 S(1055,2111) = 0.0851001274923210886895947521760306576866249582687909823436944 accuracy = 4.820433344 E-76 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2113 gammaK(1056,2113) = -0.233283111548776552574238393946641007070851242596464493763374 gammaquad(1056,2113) = -0.269098722442575510601477921597239867793914115721776756173763 S(1056,2113) = 0.150644698860986463315458984469347008138234669306132875814631 accuracy = 4.077353696 E-76 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2129 gammaK(1064,2129) = -0.335161766624507912791347653278776521161560971675749838240596 gammaquad(1064,2129) = -0.352038707721437361484633277860773569039267794149253948986215 S(1064,2129) = 0.182657211705965952205805122625529308695362121264887204942186 accuracy = 1.121699103 E-76 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2131 gammaK(1065,2131) = -0.148787816273587721450608369691646798133098271224372297212951 gammaquad(1065,2131) = -0.473194001282391915156859793675724058529699688974564883474942 S(1065,2131) = 0.397000950743696970596136117417656941322381370221302607103438 accuracy = 9.641465152 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2137 gammaK(1068,2137) = -0.421390982448066558242455725544046481914024018078465996789602 gammaquad(1068,2137) = -0.328203835240995456585338863061341607085250183230860087658664 S(1068,2137) = 0.115713597234350017440741527088537550250570925048226336631694 accuracy = 6.259722249 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2141 gammaK(1070,2141) = 0.598286197386758691796779524092467223394921535252152455904440 gammaquad(1070,2141) = -0.155305226201005962074863332556966606441410800930605747128481 S(1070,2141) = 0.452656495854995195170317036934054439129210594253175802393728 accuracy = 4.803427532 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2143 gammaK(1071,2143) = 1.21539417541378389620286809274784234476588111473432111576106 gammaquad(1071,2143) = 0.295316892243985904691396737288420593453816589998501382523582 S(1071,2143) = 0.310589821514382799474957206108014254292261066445181267105322 accuracy = 4.243238174 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2153 gammaK(1076,2153) = 0.231654367090201433740329368917803070856647385975208727954385 gammaquad(1076,2153) = -0.153449444094934349359520163632711858559063136396477028363266 S(1076,2153) = 0.267493491604402082254211168598425362801729011395974009457624 accuracy = 2.523063990 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2161 gammaK(1080,2161) = -0.543391662956187130362538574493474934197089196920600639474342 gammaquad(1080,2161) = -0.353618667694938465844872285867621530128814680939779644819698 S(1080,2161) = 0.0801454458565423807621025649578432340440629022296339840567828 accuracy = 1.896390389 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2179 gammaK(1089,2179) = 1.22469963868726089747372832462063663509273216859739249996479 gammaquad(1089,2179) = 0.138238538870650313214522547581324828980990279057733185561688 S(1089,2179) = 0.472346675024186604788781831203469961938020668765682844883760 accuracy = 1.398871207 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2203 gammaK(1101,2203) = 2.25051703191554364106998160419782989895221672574522601164327 gammaquad(1101,2203) = 0.614370811031258010782812415195913408304141952317651002745719 S(1101,2203) = 0.509139844947675857180990202652815926192204230938466988989715 accuracy = 1.281953346 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2207 gammaK(1103,2207) = -0.594109215889205613878501471516675049137891341481191438896925 gammaquad(1103,2207) = -0.436007843527015330814559086687254855910574694922070909688839 S(1103,2207) = 0.137208133722426862859908863873330812774847489611392879526782 accuracy = 1.277021302 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2213 gammaK(1106,2213) = 0.869682626872001573675800367223023262667982562049807903940805 gammaquad(1106,2213) = -0.0531769602888319528538889333758537330130847101568122196137781 S(1106,2213) = 0.486277291731150314362151718940995368685330249299340913000130 accuracy = 1.272183550 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2221 gammaK(1110,2221) = -0.120049922093228247290619540500571097456389248180428510230751 gammaquad(1110,2221) = -0.355111283804689421332182806824893112432235239774928261293004 S(1110,2221) = 0.293350801851792768983554889949166478540490933290216773693342 accuracy = 1.268624753 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2237 gammaK(1118,2237) = 0.472974291559428148657077706384423713903283688180729722846012 gammaquad(1118,2237) = -0.230573999671645855644537309522897084627133787646573657748529 S(1118,2237) = 0.465336438170168040525865672396482191204809613994785799065841 accuracy = 1.265942737 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2239 gammaK(1119,2239) = -0.661982949547420749732565127918540531684087792188807248349470 gammaquad(1119,2239) = -0.508896422486749224754223919974775915795897500909803851277955 S(1119,2239) = 0.176181582070367099479750982740073953919483383893511894257056 accuracy = 1.265799806 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2243 gammaK(1121,2243) = 0.0520905893330014989553340512809180007788189029847733976994900 gammaquad(1121,2243) = -0.320833668903787005981185701033889395829217375572345609941549 S(1121,2243) = 0.345158274557236861543233146236499060760603294909332157120651 accuracy = 1.265578260 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2251 gammaK(1125,2251) = 1.39935753137681701962536718414079425625065227469913676284451 gammaquad(1125,2251) = 0.231593852226624642745520107996273968711713849058928317537365 S(1125,2251) = 0.466369551274915704346657167466387066008533221664781555510253 accuracy = 1.265310150 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2267 gammaK(1133,2267) = 0.848884370397492798335240393625874029626721180117475026586167 gammaquad(1133,2267) = 0.0475400460557121962762964762263243633387529923888647733675717 S(1133,2267) = 0.375197326113354695169726624476691898465824002863803908381289 accuracy = 1.265108108 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2269 gammaK(1134,2269) = -0.229990178118650418532830077526421060045784623017446985341154 gammaquad(1134,2269) = -0.394878524746566885427626441477146362248865479341381532183696 S(1134,2269) = 0.278179931612113845092537552721947275906405598565347041019616 accuracy = 1.265097341 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2273 gammaK(1136,2273) = 1.06032402812067918771069048226399891023238697951758724786569 gammaquad(1136,2273) = 0.209730314620681284259357746522917867231745918367223893060866 S(1136,2273) = 0.318730806872789352024385706405972538253070435722394393134415 accuracy = 1.265080653 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2281 gammaK(1140,2281) = -0.514231823683373889028067911516735894911404956550644943140238 gammaquad(1140,2281) = -0.346690252620056160934245813407338469841134265010906876271243 S(1140,2281) = 0.0878786457734822892204727203540555625587734636742222310972884 accuracy = 1.265060458 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2287 gammaK(1143,2287) = -0.534776883829274813073251684232973892669149734868755879168195 gammaquad(1143,2287) = -0.494071794073859653533914800262608398336185647820610351532807 S(1143,2287) = 0.224991533219147272994769007044879745139946299120664807761400 accuracy = 1.265052245 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2293 gammaK(1146,2293) = 0.0807703619412318750795318779948880534591651462493825464056447 gammaquad(1146,2293) = -0.301618373164926149347353979989679794889779900052918544273191 S(1146,2293) = 0.340315592468251968117376600850770878725592433666612120817124 accuracy = 1.265047349 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2297 gammaK(1148,2297) = -0.185720242431364792718142013112445743102373390497440142889232 gammaquad(1148,2297) = -0.323953167530204311525964135547606532720165738826286055447532 S(1148,2297) = 0.229407645791288226523417511429600619922809650098675832152061 accuracy = 1.265045240 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2309 gammaK(1154,2309) = 1.60402915368527484510235157683698336759068212388974005570806 gammaquad(1154,2309) = 0.315014464929422529907783891840414075249722342047852823092686 S(1154,2309) = 0.485322345490044508033966719065990570421553957895703756792612 accuracy = 1.265041940 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2311 gammaK(1155,2311) = -0.422475454888595889671632074862020928272362270330452113266295 gammaquad(1155,2311) = -0.427551506117846525303365247203957622002998163468677684356690 S(1155,2311) = 0.214637277459203476414136186310945775383836585715010210457269 accuracy = 1.265041652 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2333 gammaK(1166,2333) = 0.715012709967669166560806311505535604761070189542273381225861 gammaquad(1166,2333) = -0.121797598950362994035815674612061769771866626843238386945222 S(1166,2333) = 0.477641237323558334183967469581804121566240728737858478395611 accuracy = 1.265040350 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2339 gammaK(1169,2339) = -0.245894527868147991008980618707639012976992328577493943471368 gammaquad(1169,2339) = -0.431961319319237228132128322465947450371583567970406710588267 S(1169,2339) = 0.307355056504371064315908489734791234977219047912862513465703 accuracy = 1.265040257 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2341 gammaK(1170,2341) = -0.148724921616955467360991111637532744013030391434184780564471 gammaquad(1170,2341) = -0.376550455440817867473550035028375590992953867258082184020782 S(1170,2341) = 0.300530231070910452005500584086354234583324557494685927206968 accuracy = 1.265040236 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2347 gammaK(1173,2347) = 1.90902693492195562080664275679854651728125215056921870514406 gammaquad(1173,2347) = 0.418593189055266137312101136065668286525312273354419058042538 S(1173,2347) = 0.534266209097133023578511807503796187428832068816209498247494 accuracy = 1.265040189 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2351 gammaK(1175,2351) = -1.06138227498312544064354665729927686679442098617111615096172 gammaquad(1175,2351) = -0.579672022767371851116155163843772052905453882398928031248934 S(1175,2351) = 0.0473292690952686904729838910266248692583857834266651690749580 accuracy = 1.265040169 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2357 gammaK(1178,2357) = 0.972447386745904761166262189060487715905002294442827770847153 gammaquad(1178,2357) = -0.0215065433791274183051846731824301239608026799496744723206227 S(1178,2357) = 0.506082285796448192115398588312840223322664503889228068578423 accuracy = 1.265040149 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2371 gammaK(1185,2371) = -0.0614357956914243857880054019734716545133484931754742315650063 gammaquad(1185,2371) = -0.436795513011845479909266399625071992356937957903246154860428 S(1185,2371) = 0.404438149536161682483590387182696469044470662257188053649316 accuracy = 1.265040129 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2377 gammaK(1188,2377) = -0.426757482815484053213376844961884502497701590029965602894185 gammaquad(1188,2377) = -0.332170920176040055760593107650136820396881764188516528644482 S(1188,2377) = 0.117156321346715496762591459349134873987467116611380797698571 accuracy = 1.265040125 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2381 gammaK(1190,2381) = 0.0972964094658306920625759264583688116369762101491661236915992 gammaquad(1190,2381) = -0.355667930638190567828077491964385101013348225456076048616202 S(1190,2381) = 0.402682674058818757812979153832591788508622176132463790916578 accuracy = 1.265040124 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2383 gammaK(1191,2383) = -0.502245070819528071402745846038006415253359132758435158569394 gammaquad(1191,2383) = -0.480454756537672585644944107497027697898446407774927264557227 S(1191,2383) = 0.227699955074781190136094942002721620751916617076355784486219 accuracy = 1.265040123 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2389 gammaK(1194,2389) = -0.213066757154889711575153614367016111373830982806342313328688 gammaquad(1194,2389) = -0.390707471764654862609451080823958160700801794308828550629108 S(1194,2389) = 0.282545401782828555914496023291562251035101253003621750790126 accuracy = 1.265040122 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2393 gammaK(1196,2393) = 0.489846513748412367427518847006267193259901639038443516987507 gammaquad(1196,2393) = -0.0509056144085351318924075410469392643083759593252045651384534 S(1196,2393) = 0.294202553747643411483432758978010536460274635972998724767074 accuracy = 1.265040122 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2399 gammaK(1199,2399) = -0.975465943338048152649560760529419914298731322437348562694990 gammaquad(1199,2399) = -0.550683725573443858724418518059754064278530232206040555325536 S(1199,2399) = 0.0613279834159210971257802078411989321062422404498453194641066 accuracy = 1.265040121 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2411 gammaK(1205,2411) = -0.498162843670441283846914277422304309401297200928985468803245 gammaquad(1205,2411) = -0.529047601272624808623972892411134155056929727397896560726868 S(1205,2411) = 0.278350453944005583495178680048411554205885953407178348404168 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2417 gammaK(1208,2417) = 0.0428668164217845074791344084141326782581588385624057858912563 gammaquad(1208,2417) = -0.233276184979014223933091657594170206382095906156661900036513 S(1208,2417) = 0.253097365876019167446730508177245516772615115763364037078199 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2423 gammaK(1211,2423) = -0.216135816870265669632813820365810533406297336956686956978777 gammaquad(1211,2423) = -0.274993769284470573757597053330739502233847854528570485872351 S(1211,2423) = 0.165317115655114674174054015706359642723853174127875357143710 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2437 gammaK(1218,2437) = 0.362495869259562584743822179795269704417589606382902367869271 gammaquad(1218,2437) = -0.183059949286640488352158370681443076699214885439721757751043 S(1218,2437) = 0.362707201844659628379053310021293033072879456380255558888842 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2441 gammaK(1220,2441) = -0.0747610235091856709619637766077111397662770828609046537235043 gammaquad(1220,2441) = -0.264120844509032599902813985718671144926965739435454847818959 S(1220,2441) = 0.225141938682637928342096576310521127372172403289846149255560 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2447 gammaK(1223,2447) = -0.425765570931715677265311060435945044332537243487427760280683 gammaquad(1223,2447) = -0.366405412694365480286519856423524108952002720584799039953665 S(1223,2447) = 0.151927652154214372712215360381800220165157230271141591629792 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2459 gammaK(1229,2459) = -0.222938184292763877955456294250898883513721048973296083936445 gammaquad(1229,2459) = -0.425782774004450597863704991368612860098214853090975078758099 S(1229,2459) = 0.312725498366975047705004149680915252937473033811792403853754 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2467 gammaK(1233,2467) = 1.22738474309977512871884819703711980340679299563930590501116 gammaquad(1233,2467) = 0.121556122735599588990299771859400759766381607836086911581820 S(1233,2467) = 0.490552559009638876281835616188298491859935107602425391067138 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2473 gammaK(1236,2473) = -0.518804205988050421648915679701114794913410542571753297808994 gammaquad(1236,2473) = -0.363992033731823567383269927390354511844743021370843798178055 S(1236,2473) = 0.103009593507312633216383613830726574066561529512022793121699 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2477 gammaK(1238,2477) = 2.71598044622019950946761337306075734277440196540613946070820 gammaquad(1238,2477) = 0.810057619683716468604127088349593320199033654055924060281763 S(1238,2477) = 0.546354492879232769256184426159373222622271621208731130767792 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2503 gammaK(1251,2503) = 0.0813802099813382167452753966508535303629378248315681053779580 gammaquad(1251,2503) = -0.238289956157520629110817231481995135039692882918838976775787 S(1251,2503) = 0.277416263128319279007354940014878314550746186616960114600172 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2521 gammaK(1260,2521) = -0.612127143842550961787327970498268010457440309894605322513643 gammaquad(1260,2521) = -0.372422717546474169467237760768254461306304530825355632158804 S(1260,2521) = 0.0648050958380582282908563714747725122369847128475554620987065 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2531 gammaK(1265,2531) = 0.0505389278862106566011488216996955051780704933877120503248378 gammaquad(1265,2531) = -0.301762130032353618410963517294568499500136023137007254210765 S(1265,2531) = 0.325482904299461886622001188818756279993443551951597606147044 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2539 gammaK(1269,2539) = 0.403819063275328060763574338343230527354965154674457744431349 gammaquad(1269,2539) = -0.223424548928607759590898330956163073979501190960314397199988 S(1269,2539) = 0.423789650782642026687584721769226310447579586397351439459159 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2543 gammaK(1271,2543) = -0.268187319563986549106392893611880292744110734866936297068380 gammaquad(1271,2543) = -0.295067470391901751609218475112445001794578984242173779898386 S(1271,2543) = 0.159431501450698776104802623301930653684054224746701580359684 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2549 gammaK(1274,2549) = 0.334371595135534016338233884286752795229962378485799060229127 gammaquad(1274,2549) = -0.254001363729695443842583976689501238840370780635281896701163 S(1274,2549) = 0.419648021500685349295404043415331630018824283083274260384924 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2551 gammaK(1275,2551) = -0.818022013026731685830548505961430040502659082762682160480811 gammaquad(1275,2551) = -0.574543977609901475956295208142153715062189455564156940125639 S(1275,2551) = 0.163994884681213709238084120611708305453120108203174534328728 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2557 gammaK(1278,2557) = -0.0848825354498913855643793624913774926192558686162178905472529 gammaquad(1278,2557) = -0.370501003027228713422573077081153677630322589239341633573958 S(1278,2557) = 0.326524799861107123414370598512511554737534636628345517995419 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2579 gammaK(1289,2579) = -0.292032371776327043647637847502314328350493284694103098924688 gammaquad(1289,2579) = -0.443198559147553244224105999901807707954264160083920579629026 S(1289,2579) = 0.295658875003788220309967133471648628840916462319539077500528 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2591 gammaK(1295,2591) = -0.916327348507183272862000459508572180291411782809249253858432 gammaquad(1295,2591) = -0.537188305341167706285622473175705048293937657445846788582760 S(1295,2591) = 0.0775072953384328053812959321317867550301255632969500256488163 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2593 gammaK(1296,2593) = -0.159043809155897275465248285015390091878571524172853551477433 gammaquad(1296,2593) = -0.243077827530713233750234717622494776382620416830769944646771 S(1296,2593) = 0.162039609143825810449512465142020270106622220884311860284182 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2609 gammaK(1304,2609) = -0.131444833153003028939112749824802304548059533308556373236487 gammaquad(1304,2609) = -0.287632332143957892935277704785763452341785261619103325103502 S(1304,2609) = 0.220401724945305932063906684220469192997628078151918524020199 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2617 gammaK(1308,2617) = -0.243318810876318611031950979139609766780980635029590154010450 gammaquad(1308,2617) = -0.275851270087465310876338388557003510135650803297089704481977 S(1308,2617) = 0.152687701059372873506888334285467230137243276896346876853454 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2621 gammaK(1310,2621) = 1.16688466201122042599953959154402631976770329928487420304069 gammaquad(1310,2621) = 0.113375932941514658482749145065396833286705892972058339417042 S(1310,2621) = 0.468564239437507118192339278422852072311279136211280099303042 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2633 gammaK(1316,2633) = -0.0755732977390288904540404913922760276246078124008325749532688 gammaquad(1316,2633) = -0.281671144921758246529730162014709826066944722062589266202828 S(1316,2633) = 0.242388318400363803315969249976112323273992022333485703781049 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2647 gammaK(1323,2647) = 1.15772008754666189797351419573121911515804686523982057285246 gammaquad(1323,2647) = 0.273146149409443509775942945904491119113110503699576331684365 S(1323,2647) = 0.304224630909195999061780399177697406836950926276820066258940 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2657 gammaK(1328,2657) = 0.227518023477168684117298975038848504217194937819627345805997 gammaquad(1328,2657) = -0.154928971422215760713564749387405907263274398399720459567615 S(1328,2657) = 0.267203617018902547519060292767669392836495903125443667818523 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2659 gammaK(1329,2659) = 0.0590226903161623859851822602026189551442718423718728193170688 gammaquad(1329,2659) = -0.382297035641676593641833032053577714750203027919114515478540 S(1329,2659) = 0.410324990018861808490566813816427750148977219775897740954791 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2663 gammaK(1331,2663) = -0.556112484849660101477456940603764251288211572749951896096532 gammaquad(1331,2663) = -0.410649322758645607016260382698377856820900165907967619796603 S(1331,2663) = 0.131111636196735553980246134075940583330999420229978821865041 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2671 gammaK(1335,2671) = 0.245720165577168441592398539408619160900423793834630131670425 gammaquad(1335,2671) = -0.124271953518335897046214064249592906141049963441991491289836 S(1335,2671) = 0.245654469225813383597355744313409305540890019968020475825434 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2677 gammaK(1338,2677) = 0.114100705449782350770715296495481356792427424624192456186236 gammaquad(1338,2677) = -0.302813028782123381560972056673693829833415409323678400343074 S(1338,2677) = 0.358388708105758885700417790481159597494959768246222650157474 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2683 gammaK(1341,2683) = 2.35495931494283321933502926325402307669457902910352738773209 gammaquad(1341,2683) = 0.645587152577401942179906526447580668101926965743803847563701 S(1341,2683) = 0.530420713162018838975529713454644444986380766491968994998681 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2687 gammaK(1343,2687) = -0.825209939430395007999831014709077893552404250364075083968337 gammaquad(1343,2687) = -0.522208774669281014459813300365883930789247671048623548725194 S(1343,2687) = 0.108133927700059777916088934038451243493406164979238307395261 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2689 gammaK(1344,2689) = -0.637172437095107238420456950997847242360607437084238428989849 gammaquad(1344,2689) = -0.381063300391520743317718106093327393643222663072218177626920 S(1344,2689) = 0.0610081598468933025544064228674159866707791212182042988449168 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2693 gammaK(1346,2693) = 1.93862466418126434428562315565026645874709797979566540840356 gammaquad(1346,2693) = 0.437800785390440509702549011876017985023723095361593192321986 S(1346,2693) = 0.530044531266905704247707264178333990118302440930022881834382 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2699 gammaK(1349,2699) = 0.430499884475167778126100924411604186229721571537436602962696 gammaquad(1349,2699) = -0.127122492077336115701868831403344687726895466909505633370630 S(1349,2699) = 0.340908268893678714058041062666575115885646642935604937474640 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2707 gammaK(1353,2707) = 1.40939320546613852261152817277804719899514979879937815651681 gammaquad(1353,2707) = 0.210755972739742582533650496677897882502768145159817683719173 S(1353,2707) = 0.492480246347795580992538543011276698149662296944451671292577 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2711 gammaK(1355,2711) = -0.796543764244315217602225390888288730700173795058084449958739 gammaquad(1355,2711) = -0.493841020260244498985315344377345078684539579051621275885511 S(1355,2711) = 0.0941106376123491290170935004039512313994189378892390218982541 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2713 gammaK(1356,2713) = -0.407452672025204730390167158351962857332993102186093190173149 gammaquad(1356,2713) = -0.328349948769330729546697104505782811284491330697732138978423 S(1356,2713) = 0.123166051858376791389914512526993750578489302317754388402427 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2719 gammaK(1359,2719) = -0.784867667176430829550157231613760546172574311298479468748165 gammaquad(1359,2719) = -0.563889253354200945883365364347265523464506549534936140503002 S(1359,2719) = 0.170000670052109064825496629353046817012309649377659696699293 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2729 gammaK(1364,2729) = -0.228318951495028633854017175286324947623492691883497963123131 gammaquad(1364,2729) = -0.324242667679275025664661773991384415273463510489556260859011 S(1364,2729) = 0.208633102026938799193781022539372929942127050435541588887908 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2731 gammaK(1365,2731) = 0.234041519132000166596039106647449637681439382936915744986487 gammaquad(1365,2731) = -0.332291541025405506826258014537908214056201583890974484047873 S(1365,2731) = 0.447863138847545937192336103503134693724112726382992224491095 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2741 gammaK(1370,2741) = 0.362620743002060616441123388596349405300522225101786804948258 gammaquad(1370,2741) = -0.244241664881716562291988776594372278160081350826209412122391 S(1370,2741) = 0.424107496584151471645497771550108096428403100685504255377243 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2749 gammaK(1374,2749) = 0.257390745714725589397293732006619948340704811012525471872455 gammaquad(1374,2749) = -0.210369859853733472188107186632447015250927334301314184629815 S(1374,2749) = 0.337624367993453391029282764410101695714702809818505480943791 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2753 gammaK(1376,2753) = -0.247171989717523319062634517974746333745095769220924880004017 gammaquad(1376,2753) = -0.351046700382590456010148001962109250884539737509285724437500 S(1376,2753) = 0.226021670911702596022069380554593802994077349223891366322643 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2767 gammaK(1383,2767) = 0.208812471588021124735153656415211774041704325315353222237295 gammaquad(1383,2767) = -0.178466687297120191030068318652984312862657044224350326894052 S(1383,2767) = 0.281440255162752784144929420247431745671567515035574092859381 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2777 gammaK(1388,2777) = 0.615322526002317502299450229852229951221904315241851003786774 gammaquad(1388,2777) = 0.00831587969210185880562711437457778730118214254397247061960885 S(1388,2777) = 0.297917226520997310292918717134931266005753433835224972563225 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2789 gammaK(1394,2789) = 1.04805516061722982021702335009188622966578305991744475805439 gammaquad(1394,2789) = 0.0516655980852824975017113020968590746961518648611911234448898 S(1394,2789) = 0.470939199155250007844751219928262086136188353470482407218870 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2791 gammaK(1395,2791) = -0.670172443671964022697280735487370444995454734288634408157154 gammaquad(1395,2791) = -0.513237660554453077658646514509921238796746814704772114053661 S(1395,2791) = 0.176729547099557746924667819838613905207786776752236499522558 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2797 gammaK(1398,2797) = -0.0141198304513058304066313741774773799693997632687932794366311 gammaquad(1398,2797) = -0.343151027646338177196990960282775035946403438508847756478813 S(1398,2797) = 0.334671888047795068909651689112861055136356897333375062684854 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2801 gammaK(1400,2801) = -0.237789531739543003090998200793876490501831603429300556413365 gammaquad(1400,2801) = -0.319105447540658809573667465506742466525417965837551588102282 S(1400,2801) = 0.198793229568162288648852337762698539024226701335679839660323 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2803 gammaK(1401,2803) = 0.544162433198681995493677376690823950229010669619000542697068 gammaquad(1401,2803) = -0.213853788576720088987133280695430328230284362369769264712234 S(1401,2803) = 0.484518437447444957490757412447235269391761941954271450031697 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2819 gammaK(1409,2819) = -0.204223560738277521810857557884521858264112594314966732319531 gammaquad(1409,2819) = -0.404116611370955721707570443014846187270665267336065248472384 S(1409,2819) = 0.300595296315671802436422218754838513747853320247781092842992 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2833 gammaK(1416,2833) = -0.190736501561602532383224325126013696914988192492597134800268 gammaquad(1416,2833) = -0.255411705683077338315016719026720297501653162702534751653549 S(1416,2833) = 0.158640013606402040246355753817704521738167103665574797458914 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2837 gammaK(1418,2837) = 0.347080424269092482274054892336370722916165467197357879868697 gammaquad(1418,2837) = -0.294317152843301976439208173685389215801576295945583193232309 S(1418,2837) = 0.466455654393431988495058912300456620937779278520854711775595 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2843 gammaK(1421,2843) = 0.127560485890480377443665583076378100798628180297827574116179 gammaquad(1421,2843) = -0.311430282355746419005877525181454105677712075217117744804490 S(1421,2843) = 0.373811402304566657027002863301571546992853138798488519388406 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2851 gammaK(1425,2851) = 0.386035055308760699206560625056995078410959541165252343459066 gammaquad(1425,2851) = -0.250488484784169078715950464503146150206751771768941990608351 S(1425,2851) = 0.442110323826459485864382581591143845015944987952696316445352 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2857 gammaK(1428,2857) = -0.476486320835735203986901113815605925404621281473541819797793 gammaquad(1428,2857) = -0.354325692481911408221901561586037477954931530081494481903155 S(1428,2857) = 0.114689407518835337553353908034767864565736505353223562904462 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2861 gammaK(1430,2861) = 0.291330068098475082343364022595703832787828542994798472418374 gammaquad(1430,2861) = -0.289699903830050704946550130255057102670223017668082514212617 S(1430,2861) = 0.433973517163720045023892929796606292082079328955511682773332 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2879 gammaK(1439,2879) = -0.851906911130716089019036087479125907924397890711855715554467 gammaquad(1439,2879) = -0.513738449345956778660095591137177640278682092995993406539435 S(1439,2879) = 0.0864011858774347008163252394120971733409303488464749406000460 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2887 gammaK(1443,2887) = -0.0293676077493574057471480813989298299696284834430061008663229 gammaquad(1443,2887) = -0.271976566160708708990273475683256589885315230011922358139727 S(1443,2887) = 0.255912309552200668782321532232621362718569023016059073313745 accuracy = 8.052417925 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2897 gammaK(1448,2897) = 0.503642604571318206285578989323284177424221539209349741587319 gammaquad(1448,2897) = -0.0424265974662036719095388765700056266221755902096078710694415 S(1448,2897) = 0.292871616775728564002774789829545709350227393765318121354366 accuracy = 5.239439023 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2903 gammaK(1451,2903) = -0.974592270593626788162056730122490104044178335793544545403322 gammaquad(1451,2903) = -0.579602329600957403607229496165232409362454759842169277350134 S(1451,2903) = 0.0909324003751252931423049729621708649324363763308470618447225 accuracy = 4.048530287 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2909 gammaK(1454,2909) = 0.0833076932696815671875707092588468644888385379210560454814837 gammaquad(1454,2909) = -0.359451240768008708472570420335950429695906616997059035458745 S(1454,2909) = 0.399733772984263659598626454953855479053337647198813115790385 accuracy = 3.128298153 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2917 gammaK(1458,2917) = 1.57317823551039186196871144452045853695531873560643070870815 gammaquad(1458,2917) = 0.366648799519757054510796092826529806194941453445499924100344 S(1458,2917) = 0.418572295092457442759785643004297939167098940348482127328833 accuracy = 2.218126232 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2927 gammaK(1463,2927) = 0.155766629515915239094098726031710180557455206120876725004299 gammaquad(1463,2927) = -0.103767157014506313635207160896804968582374452811985793912240 S(1463,2927) = 0.180286539221764704568259903254862227007674288779082372583147 accuracy = 1.443209280 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2939 gammaK(1469,2939) = -0.710994696883906226256755620531457355935431319546058162164952 gammaquad(1469,2939) = -0.616033707547096450301825537325538071983664975970260705656026 S(1469,2939) = 0.259177301129238143614409434638291008475366125604992602408966 accuracy = 8.616567325 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2953 gammaK(1476,2953) = -0.239452651906596840453286911945135327953166807670849777356144 gammaquad(1476,2953) = -0.274060136015739428070646776639253755261626132277831652885348 S(1476,2953) = 0.152980392568920695738845684008436953360849710469523330662406 accuracy = 4.720604338 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2957 gammaK(1478,2957) = 1.21115771756959391668430730362226496610842131909248480660291 gammaquad(1478,2957) = 0.0884204968576963541199758436817969396271356238269075853947752 S(1478,2957) = 0.515806546886530158143454962701013795034670252327226001293886 accuracy = 3.974918045 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2963 gammaK(1481,2963) = 0.566676535893188145866920464204987828218442291590239006850804 gammaquad(1481,2963) = -0.104633713830461497100255770610388316273944264317052032426171 S(1481,2963) = 0.386622562879760910134800828897146140484230673096295226134706 accuracy = 3.071302229 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2969 gammaK(1484,2969) = -0.224628496665040251059084864757916330852722390006352841765880 gammaquad(1484,2969) = -0.314403803100171136247872553626991289690699940897050965664025 S(1484,2969) = 0.200742523016511563312250480345864112756958852921241187717441 accuracy = 2.373095135 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2971 gammaK(1485,2971) = 0.579605187740223220775854282164443634453143145804852424945484 gammaquad(1485,2971) = -0.144510142268834900969756203025446245063574640637784219185215 S(1485,2971) = 0.432966498112774355189018288889550847060270872305695772380686 accuracy = 2.177604234 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2999 gammaK(1499,2999) = -1.11125200543120555588224287762063197137469704937462545792439 gammaquad(1499,2999) = -0.600502322521062672121508376905838093843308433084697566035996 S(1499,2999) = 0.0435410906228800060735982526401953245778710006130725658104197 accuracy = 6.535090994 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- gammaquad(q) computation time (output time included): 1 min, 48 sec, 138 millisec ****** END PROGRAM ******** ? ----------------- ARM M1 macbook ----------------- ? gamma_quad(2,3000,50) ************ A. LANGUASCO ************* ********* COMPUTATION of gamma_quad ********** ******* CONSTANTS IN ONE INTERVAL ******** Interval=[3,2999] Starting computation of gammaquad --------- q = 3 gammaK(1,3) = 0.945497280871680703239749994158189073590923645932675197138163 gammaquad(1,3) = -0.0143841605505437150931809109055540137064408119047613545470457 S(1,3) = 0.212479728819356643864244598754017124340029995415411590182454 accuracy = 1.084285754 E-76 acceleration level S1 = 7 acceleration level S2 = 7 --------- q = 5 gammaK(2,5) = 1.40489514161703774859755907975977607779602328861489255345108 gammaquad(2,5) = 0.0461458800534074903928094692264289571939474847831848110873225 S(2,5) = 0.455121951700848837080875154000185626763363990240696750399138 accuracy = 2.042067495 E-76 acceleration level S1 = 7 acceleration level S2 = 6 --------- q = 7 gammaK(3,7) = 0.592851354895253239563134841433051093287025763579094440879347 gammaquad(3,7) = -0.0926780569130860504742496824172021064041068633790206176709785 S(3,7) = 0.226944555272769894830371041180129342244529351036746072405703 accuracy = 5.300386400 E-57 acceleration level S1 = 7 acceleration level S2 = 5 --------- q = 11 gammaK(5,11) = 0.492997360604491935512824706086721562189530954851774835254915 gammaquad(5,11) = -0.195292330176206138102173964274817986915775492499884490246318 S(5,11) = 0.321896246838533578655489138419922303019455627228901049112848 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 5 --------- q = 13 gammaK(6,13) = 1.04718723173231299991374416193524756118203996127350436353882 gammaquad(6,13) = 0.0301074924322382983687295991783323956192809523937408108986854 S(6,13) = 0.386613233539687504252580505057403109771519530544669407686597 accuracy = 1.060077280 E-56 acceleration level S1 = 7 acceleration level S2 = 4 --------- q = 17 gammaK(8,17) = 0.908307099257038977863668595013501552177477501281164206215679 gammaquad(8,17) = 0.0733559744654027950404264644833646711817990741626764787885114 S(8,17) = 0.292259658161359941383609876214850900669808332334601099716289 accuracy = 7.788757945 E-76 acceleration level S1 = 7 acceleration level S2 = 4 --------- q = 19 gammaK(9,19) = 0.492301983113821272099532696256330642134390306293850069053052 gammaquad(9,19) = -0.243088467617057774407969499876796863121113385731196157509627 S(9,19) = 0.407449487530456175457485086008077363709492448286478724854543 accuracy = 1.265040140 E-77 acceleration level S1 = 7 acceleration level S2 = 4 --------- q = 23 gammaK(11,23) = 0.155094716863085535094798696890315040002505309299033681384099 gammaquad(11,23) = -0.154890982078921318724503029041788889671789272763143726559047 S(11,23) = 0.161177108330256138753567085854896497890260556620832482205674 accuracy = 1.273675785 E-51 acceleration level S1 = 7 acceleration level S2 = 3 --------- q = 29 gammaK(14,29) = 0.887324790861093605645613427550080812469140322272234441716631 gammaquad(14,29) = -0.0433981284358583477948810901248455257723797234667427146869489 S(14,29) = 0.426930241188075257275129374750566081908833582568525219850235 accuracy = 5.759097759 E-66 acceleration level S1 = 7 acceleration level S2 = 3 --------- q = 31 gammaK(15,31) = 0.126058512779792311526859685486561017736465458624578447974359 gammaquad(15,31) = -0.200758937437857720945746151120917991208049061958907334409184 S(15,31) = 0.206555073753001439277023255121825879902116142429853358867085 accuracy = 9.415378897 E-71 acceleration level S1 = 7 acceleration level S2 = 3 --------- q = 37 gammaK(18,37) = 0.733102673172264776908861817524507766265533028550684867613968 gammaquad(18,37) = -0.0394363866424350349832295582675556420651615157685345299545856 S(18,37) = 0.355836085552953195043659138265483870143760285777659794822057 accuracy = 1.265040160 E-77 acceleration level S1 = 7 acceleration level S2 = 3 --------- q = 41 gammaK(20,41) = 0.615934968228594782958889511356674356895293389810944361839551 gammaquad(20,41) = 0.0146474462054087808634946768760351881892106409107671064216982 S(20,41) = 0.246900387075084763067615536639334395403730923127213804077837 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 3 --------- q = 43 gammaK(21,43) = 0.826697991974027773137090735656156613740164441507435991444777 gammaquad(21,43) = -0.130180614883202449317010686524711545088630222920762168277954 S(21,43) = 0.498753419016721545129926976812958339630627489092556885248061 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 3 --------- q = 47 gammaK(23,47) = -0.0639434544522170508525085313015869657394869154126141368500805 gammaquad(23,47) = -0.209459271787288004741097547540618668694635413157388726454542 S(23,47) = 0.135638114107809277284180774609692862902108797820427048972974 accuracy = 1.040289171 E-53 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 53 gammaK(26,53) = 0.878110627484391660677869334383630435040536809220506131218129 gammaquad(26,53) = -0.0652459448747979912548814414925816414873627302677428088287400 S(26,53) = 0.466125374832838803957811597732194380446477502638464935946957 accuracy = 7.009381428 E-61 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 59 gammaK(29,59) = 0.0440847670224070536754955164366911856779710373826678767366528 gammaquad(29,59) = -0.305142853766388656601623065868861050649759916870252673432788 S(29,59) = 0.292034052416335981278887631210312698453716583929427521029459 accuracy = 4.659984237 E-68 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 61 gammaK(30,61) = 0.572790922762332505424740748083304517325872513539398024625139 gammaquad(30,61) = -0.0773526292133287215832462469562201037673655064398706751996700 S(30,61) = 0.329490808393050713889355045135992239544337748683892511987761 accuracy = 1.883075653 E-70 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 67 gammaK(33,67) = 1.23557939957748197022641609358833347210104709960531020897882 gammaquad(33,67) = 0.0587958118987415049252742472848842785133903271609317411283705 S(33,67) = 0.527140155924916403978312041961072436699504943071860519897874 accuracy = 2.499680646 E-77 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 71 gammaK(35,71) = -0.205359596043008924545317832926669995000916949021075394700293 gammaquad(35,71) = -0.242044003823473935753177121096661754424970762637203931810202 S(35,71) = 0.108916492394531506185307815115376513376229598650162190830617 accuracy = 1.265060101 E-77 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 73 gammaK(36,73) = 0.384775924995843291497501509840814256929310989740896201881474 gammaquad(36,73) = -0.0106270877288764761078288639634999893817559930282028274689221 S(36,73) = 0.173220192996600961237884418485028349992906259809264833516634 accuracy = 1.265040200 E-77 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 79 gammaK(39,79) = -0.0552643439689267385196440414346961350381915861160694936766142 gammaquad(39,79) = -0.266362251932808223100093639665794615536416681532658999124618 S(39,79) = 0.210720798842787023749419403938950324157234085753966498277258 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 83 gammaK(41,83) = 0.118212456627370468976883170695170955818439701716515628244978 gammaquad(41,83) = -0.304303321698196569204191138728805983678968456381626565055533 S(41,83) = 0.336465399964341572451928625153883105167277861772425620823218 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 89 gammaK(44,89) = 0.403873279807705943888953890764075539388660894950294287229824 gammaquad(44,89) = -0.0535000457334541323546467705342916317095423149508397859707145 S(44,89) = 0.229933069900192673399590673071614349020891737499095115016838 accuracy = 5.094703139 E-51 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 97 gammaK(48,97) = 0.300746656859439020714712186457003681033852432184403285037357 gammaquad(48,97) = -0.0378544644598258677125218003966780735369696960057433986959932 S(48,97) = 0.164401173209840259204686635178805113461141146979930554985629 accuracy = 8.480618239 E-56 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 101 gammaK(50,101) = 0.743144143271530600772153129534654863065341622262569584539762 gammaquad(50,101) = -0.0987097455061733317652663301175735326537132715546511787448372 S(50,101) = 0.447206214557732334896921903550336018401929669749947947265062 accuracy = 3.450772396 E-58 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 103 gammaK(51,103) = 0.00806182570974999256560305416069477960735482684701053847375948 gammaquad(51,103) = -0.263041677624444145877576157157991569653070012025138749644764 S(51,103) = 0.244353330733095437401708065046900524061510851388002826908059 accuracy = 2.199867402 E-59 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 107 gammaK(53,107) = 0.223008049343733207892431522487751558037943765725836643088233 gammaquad(53,107) = -0.274324884353086131332570042482593829795280212234965246694054 S(53,107) = 0.363787263579377706159425431948057924844614612663301457136472 accuracy = 8.930221531 E-62 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 109 gammaK(54,109) = 0.394919543721104448448278332596906393918181477684295031088120 gammaquad(54,109) = -0.130723660194230752299696529174944953070485432759383088142358 S(54,109) = 0.306464228896314718651718489676133327570963445289015644644405 accuracy = 5.686697673 E-63 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 113 gammaK(56,113) = 0.390312154927759939755071133081321697446077147656538359252212 gammaquad(56,113) = -0.0746497873526444035766661323090757412270177161662061185780631 S(56,113) = 0.248701454911558567344460040396093636057068207902051218763364 accuracy = 2.303639104 E-65 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 127 gammaK(63,127) = 0.0925121825140514524972008360928078377994614930483995389508742 gammaquad(63,127) = -0.240029525791358444365386763524206789028451962969652538433867 S(63,127) = 0.267062652419580236990783051381260341281857673287796412024752 accuracy = 9.655704995 E-74 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 131 gammaK(65,131) = -0.160864748234258697600686194676642386020123766543706938008690 gammaquad(65,131) = -0.375370893022496187498644114141635823453845238309442092875008 S(65,131) = 0.276187759969977794297726309068047223162599085788971004747752 accuracy = 4.017492337 E-76 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 137 gammaK(68,137) = 0.355771700959618339062565735682561475102132716935635029944777 gammaquad(68,137) = -0.0893938072769295505564763454290013132935838693140736510302656 S(68,137) = 0.249191492588252966722629837799767839849932819053786146462028 accuracy = 1.274978041 E-77 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 139 gammaK(69,139) = 0.175022938468019780991265082017309492726247948615123644164757 gammaquad(69,139) = -0.334887502965627210385495225489548903289538068226386405020870 S(69,139) = 0.404520443456409956833342313893582114209029445938458539002980 accuracy = 1.265670374 E-77 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 149 gammaK(74,149) = 0.592800513721625072131668400793291655323916710130822302118044 gammaquad(74,149) = -0.144256580068984995815066661954619899584692259265903002193762 S(74,149) = 0.423751612923225034782953469529968022895785463077283858834576 accuracy = 1.265040121 E-77 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 151 gammaK(75,151) = -0.143540485500707215803030793348882263507597123004822174115871 gammaquad(75,151) = -0.302286021032400859451430831074688753508181067938370697067488 S(75,151) = 0.213791512159330837120594646735299367453523385127360310425277 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 157 gammaK(78,157) = 0.488159351865002936648030633604448820619496562515099203469522 gammaquad(78,157) = -0.136536850975188832367033862703600853738474815689225157391424 S(78,157) = 0.364410610864907262045458008876326945943280008386314341318723 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 163 gammaK(81,163) = 2.74554279418505666447051533649746906191427605620474466237177 gammaquad(81,163) = 0.801499031628166681774949165178396257764328191768772255280415 S(81,163) = 0.555550914227303742021836489594656946413081789967148784127921 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 167 gammaK(83,167) = -0.376220308036904272842350094735005099998421599501646355489418 gammaquad(83,167) = -0.320278611510223262619492478366891100070930924405270946044148 S(83,167) = 0.116752813478467646959583241912807889331366743321282130950464 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 173 gammaK(86,173) = 1.24479947293024505450446269190065729708962488442017819942483 gammaquad(86,173) = 0.0830850857345306808065876336676420925067590235494501148148615 S(86,173) = 0.524334151909377372762697490223265069209024776487051559646343 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 179 gammaK(89,179) = -0.0539311348925890910188524806093861892147164490554103754738157 gammaquad(89,179) = -0.353869425524519067791023090977384164083856417472009260391426 S(89,179) = 0.312332549634851614988962568565889377971995570983121073911466 accuracy = 2.576298746 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 181 gammaK(90,181) = 0.310789870137041930724536373484121652462570890347987218033398 gammaquad(90,181) = -0.172868421047262874685947954461538623255565229681274186191994 S(90,181) = 0.313823086584489879640329788318507758022294195851094242948740 accuracy = 6.513114808 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 191 gammaK(95,191) = -0.453588151546997252815275870547274457045583489574705587443602 gammaquad(95,191) = -0.333902672725834657442557912968738108527688344242992295419427 S(95,191) = 0.0932868247732659524221569515050946506717164903070406937200451 accuracy = 6.713822773 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 193 gammaK(96,193) = 0.0975471264188241497013082169164668573860658121655621221954173 gammaquad(96,193) = -0.105715293065487559066151889092717947904297121000986405042557 S(96,193) = 0.140783933907959827792183781266099661065585059655176357874200 accuracy = 1.696123648 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 197 gammaK(98,197) = 0.954354601996743119823542405998188206521686224131467914365195 gammaquad(98,197) = -0.0290330192489716952280685526859239298638104945157692623192066 S(98,197) = 0.492732759714848386500095374743276117372080534993855159027828 accuracy = 1.082162223 E-56 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 199 gammaK(99,199) = -0.273088493247754470158588875951848607958418115486293410228900 gammaquad(99,199) = -0.340923181924444457125177557489863301657048052626879988930682 S(99,199) = 0.191012003925000322057473722312250772420538223973204312859397 accuracy = 2.733011737 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 211 gammaK(105,211) = 0.424774238463551240286910775492231225444683072766637566442306 gammaquad(105,211) = -0.241934145703132528202805190770161351798998748200224805635409 S(105,211) = 0.441578745569488942404017825503290583287908955598825330831115 accuracy = 7.076779327 E-61 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 223 gammaK(111,223) = 0.0102747995014170240537028582218802902295405065878495621034857 gammaquad(111,223) = -0.263140402433944569253157093770905720354210051119282059085229 S(111,223) = 0.256099487384067228220017294932018973516956366858092004949787 accuracy = 1.826456718 E-64 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 227 gammaK(113,227) = 0.0265282466662660257711679032259135735213118296607719201737530 gammaquad(113,227) = -0.338234284458165040805097951136812297994178597447829552567183 S(113,227) = 0.339496305982710879630917784216951613415996238121315128786493 accuracy = 1.162103655 E-65 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 229 gammaK(114,229) = 0.271591123940222832284183092004943661415417491899810787035654 gammaquad(114,229) = -0.190661623714753067102757662025097468035655180296036444712146 S(114,229) = 0.314541128659526238401776322931225859451174299177968272775919 accuracy = 2.930969395 E-66 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 233 gammaK(116,233) = 0.279134685939512288852518180423991634629279786651705016866952 gammaquad(116,233) = -0.124492923431747430026098055385979538976066870273134675143568 S(116,233) = 0.252312338699853357716792005781878616035127074266097278603459 accuracy = 1.863993695 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 239 gammaK(119,239) = -0.510346919924465600595597100655958799487060212268148494776934 gammaquad(119,239) = -0.355466994625400296204525303661587654692004081378116398636386 S(119,239) = 0.0887883591338996163542831323372597064265458148326913746286564 accuracy = 2.987813181 E-69 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 241 gammaK(120,241) = 0.00339589862209132501998269365422964821139106158639329357812744 gammaquad(120,241) = -0.125860362254877223201391707283788966211851004272048563916790 S(120,241) = 0.116131651287817354470828030530256257536260577223544694377372 accuracy = 7.532302232 E-70 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 251 gammaK(125,251) = -0.252799831129637705704786206137308036207277855942524021423860 gammaquad(125,251) = -0.417453476653488772406635892546114210920271968431305293283355 S(125,251) = 0.280002655210406351781805618999443686334074349228875806700153 accuracy = 7.662380437 E-73 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 257 gammaK(128,257) = 0.337852975874596531645929291920530692841856339022972554844701 gammaquad(128,257) = -0.113035927446272504834975440222434163390103357664857781992093 S(128,257) = 0.271124376155259794489284237911681432757096517744728932777641 accuracy = 1.227225669 E-74 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 263 gammaK(131,263) = -0.390820309171766731319068163237395396339998482445327366919625 gammaquad(131,263) = -0.341583926558603441238861191184911387655713523261210785636656 S(131,263) = 0.135539890231922814985651677764295612977345038068958237140913 accuracy = 2.086963514 E-76 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 269 gammaK(134,269) = 0.620858450697879574343790911437681539739831342417402407340652 gammaquad(134,269) = -0.143057550547919107523803623878511935728714602445104277812570 S(134,269) = 0.443048881531930090393049913215831740826482795834471456083274 accuracy = 1.578376920 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 271 gammaK(135,271) = -0.353849063140421521232186444799499096366837271552190458743431 gammaquad(135,271) = -0.371240133416749089149189827638061367334270574156832381359516 S(135,271) = 0.183941307733798141681065364362004667226952805178113960023858 accuracy = 1.343958904 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 277 gammaK(138,277) = 0.341056878707485643335795427913036213775539082743700104952415 gammaquad(138,277) = -0.186134570074266928724211460295713949403188094314826682246328 S(138,277) = 0.346474571916800803834374758401643993176531874911726968566134 accuracy = 1.266300629 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 281 gammaK(140,281) = 0.106052521109155327296859873849923456426398753796689102208249 gammaquad(140,281) = -0.160921440044009159749508393327644469333611512682855299161395 S(140,281) = 0.203879210117633705960247904672796961938203950713326761823345 accuracy = 1.265120044 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 283 gammaK(141,283) = 0.580366332995681093951046550782838993666635333586131586304289 gammaquad(141,283) = -0.190695759818013261104671646650728746075428706537515173784092 S(141,283) = 0.470869268695918989596780051214497285098816526694230866562944 accuracy = 1.265060244 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 293 gammaK(146,293) = 1.63032234782806628704267271074535261737317602848093310838091 gammaquad(146,293) = 0.265588143051994213273257499498008652928790892899627938571471 S(146,293) = 0.539846707901393267052976389671221597212883123638969250982774 accuracy = 1.265040141 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 307 gammaK(153,307) = 0.657577589704655470582516012724982516749278999820623651305178 gammaquad(153,307) = -0.156498421584102143766600975382771971535869008867088280631833 S(153,307) = 0.475929622077627269329756918726827785002263887560523860057812 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 311 gammaK(155,311) = -0.624123092306631066595111622178138685385033103759240410315581 gammaquad(155,311) = -0.388163131820930167214391922290338582866764680569916972768534 S(155,311) = 0.0668438551640997401520038602892810429546998635088485629652538 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 313 gammaK(156,313) = 0.00887695430676460178589452016436053788326020680106883144435292 gammaquad(156,313) = -0.151109989843144394420585609233026137960398159513631109116288 S(156,313) = 0.146339808037327731825265617217037800566173937163625028158740 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 317 gammaK(158,317) = 0.854752339344671242786759320919257806610089309748880482466137 gammaquad(158,317) = -0.0646323098131341775348362019712248009664956859014518106528220 S(158,317) = 0.482896293134398152386760542542722990174423911717842885114155 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 331 gammaK(165,331) = 0.870750189616758335519170114322993342678836868226687788321830 gammaquad(165,331) = -0.0416427168015584467930198438654902912765642953320564584939177 S(165,331) = 0.468226723162396610157476693694295088666441733845831227462766 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 337 gammaK(168,337) = -0.0444333655343140204973870087511383499075616232558211087014200 gammaquad(168,337) = -0.161945748580343186643388534671203900254046794588493820460020 S(168,337) = 0.131068228119209447637991359827407893138216346399266455529140 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 347 gammaK(173,347) = 0.306283809064693342323095740631986935347340226729476670657162 gammaquad(173,347) = -0.230222655738654430015814453437855707252902209084945065074016 S(173,347) = 0.374911778797089454945637357212829146697389983899952307086268 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 349 gammaK(174,349) = 0.243480902351584587777566310344706627926869557200360804741513 gammaquad(174,349) = -0.209576445320504492632170858595026186730760834245560567565917 S(174,349) = 0.322904436837959965884173149510915937893694340809159989492382 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 353 gammaK(176,353) = 0.341185561571711322157835139371965968743403725864698728141294 gammaquad(176,353) = -0.115336084987719074494430513033655129861547623333348554656048 S(176,353) = 0.277595814556339939028751889371359747752438023257461518466083 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 359 gammaK(179,359) = -0.594359650156676925068690732080870134964695087157825083390343 gammaquad(179,359) = -0.391338259781168184651797782917835181118631915006738028845731 S(179,359) = 0.0859415039926505616802344100539298902037215978709796748096811 accuracy = 2.590772335 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 367 gammaK(183,367) = -0.0114812326514358685459330016124335725308893797244172361796278 gammaquad(183,367) = -0.269447316372073353266241778067951322630579560576808861648856 S(183,367) = 0.255639265827701634469205015049769469199110736240538592925183 accuracy = 1.655416680 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 373 gammaK(186,373) = 0.300053717205031512468746152433758208387931511385294335838643 gammaquad(186,373) = -0.203966889987604663279815858877604457259438581685227777412719 S(186,373) = 0.346034637811029269593038754173647991375556464229183195690065 accuracy = 2.103193323 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 379 gammaK(189,379) = 1.04677504875426168733200724428587026408624314659690298652978 gammaquad(189,379) = 0.0414415937849423286769064856786658073224903041656644107774401 S(189,379) = 0.474092046723031866380873278549383573519455606686528649422278 accuracy = 2.671394745 E-54 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 383 gammaK(191,383) = -0.498766146702360931954254464648974865732296065147896984674197 gammaquad(191,383) = -0.377459175663241208690914050508971268596425052944785893907921 S(191,383) = 0.120290716200567750580288055701299974143652223069513085253991 accuracy = 6.749158682 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 389 gammaK(194,389) = 0.306671747094388729472288128086911847714943197596353898224201 gammaquad(194,389) = -0.253046588329652440337824332099779787406335539847982214474412 S(194,389) = 0.398697436949503446449163473161750952692777769550529712822237 accuracy = 8.568958013 E-56 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 397 gammaK(198,397) = 0.466659731478946139600603989469579229913608151985395113187753 gammaquad(198,397) = -0.150875985177048743625675453885188928068043334979946345975321 S(198,397) = 0.376650375814644047752892307167735033828531391084859250874192 accuracy = 5.466023475 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 401 gammaK(200,401) = 0.00818440324329625388886783207907360428899261778706426748429175 gammaquad(200,401) = -0.198122996689986769874947091649202019259606302264168198634568 S(200,401) = 0.194722746527501685337067658829552134240505189506525605120352 accuracy = 1.380308958 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 409 gammaK(204,409) = -0.130528022476625224300311130195381965016083672113606250056441 gammaquad(204,409) = -0.180418130090850210765523718821713549054297870304376228294317 S(204,409) = 0.107784369886798870985817268663816211047098202553444477720443 accuracy = 8.799469609 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 419 gammaK(209,419) = -0.295398039028251989137705348428489682605610112797150035232698 gammaquad(209,419) = -0.438663091680163128051779937092027085117905647403272632163986 S(209,419) = 0.283741738529766633804658203162847446697956825606977733663901 accuracy = 2.817232151 E-60 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 421 gammaK(210,421) = 0.0552657818887817403526932131214258488470562438249196934181232 gammaquad(210,421) = -0.263212613085305400912840387668847369507873770780055510627267 S(210,421) = 0.283651893513407721782533760624325654081971485475878853813380 accuracy = 1.415355865 E-60 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 431 gammaK(215,431) = -0.625615785054681922531846520641843589383009680845269587715150 gammaquad(215,431) = -0.405716869383013427367616039202779712491185969251190123467846 S(215,431) = 0.0858553627974122942554745616652008826208526692825939526292086 accuracy = 4.528296295 E-62 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 433 gammaK(216,433) = -0.0592853626845265661696594540702222226700219802117132492669128 gammaquad(216,433) = -0.180490296905374427867979734108210431490451270917061186219494 S(216,433) = 0.143821298748293448201297825853223690561080314024513597282876 accuracy = 2.274679069 E-62 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 439 gammaK(219,439) = -0.482071322637443935302778269583995414272385674025873492197396 gammaquad(219,439) = -0.422273841110067229670180069880765772169840069068962714320915 S(219,439) = 0.174292404205643011619255304803673597339176740542265574973053 accuracy = 2.882839793 E-63 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 443 gammaK(221,443) = 0.542308496631491230665169755400313713190146438891493282220092 gammaquad(221,443) = -0.125410819423925215510198355319679432491250255966479320128243 S(221,443) = 0.389671889266769093695627116212319008879117890008182028020418 accuracy = 7.272917742 E-64 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 449 gammaK(224,449) = -0.0177727715471409931849710241821597567915092925963527926014313 gammaquad(224,449) = -0.209072911355682274274643031489080528340596300081078515177795 S(224,449) = 0.193370651823470868872722785256453652175401281021139659346335 accuracy = 9.214556415 E-65 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 457 gammaK(228,457) = -0.106837948871164538361542784332213591768998063909560140017578 gammaquad(228,457) = -0.190159706244437295761748088906129860815556413208463647220828 S(228,457) = 0.130025070196032433709054403558933718950335537250531084082464 accuracy = 5.861938791 E-66 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 461 gammaK(230,461) = 0.780659989377687750751127853231358856968898428055539000919375 gammaquad(230,461) = -0.0790298909484758743961188934885980252550635842359857111566280 S(230,461) = 0.462693148634062523121277684024631229239888207086453659187425 accuracy = 1.478339827 E-66 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 463 gammaK(231,463) = 0.630856786876787147488538635003422954439581313862465878385583 gammaquad(231,463) = 0.00187329506676060591789376524278352727993214710360823538035513 S(231,463) = 0.306912536624786394153128964400422852600502645322872075228897 accuracy = 7.423836956 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 467 gammaK(233,467) = 0.0214397802030996752052274973632893631138900393212849476602971 gammaquad(233,467) = -0.340590319049689512980242478107257111440065857825642238203320 S(233,467) = 0.344715435269620362051172180341762019406720274492121008644398 accuracy = 1.872028150 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 479 gammaK(239,479) = -0.735180236083431693441599267097057557075709988696630798089586 gammaquad(239,479) = -0.432859600387500961623167474643456878423967597068407821109266 S(239,479) = 0.0588137285828029859953420274637569528004565199107481054267816 accuracy = 3.000367018 E-69 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 487 gammaK(243,487) = 0.693736807431706964356317814361603764072335701797670422375753 gammaquad(243,487) = 0.0312785596500946303596651276222872026322962069790751279459409 S(243,487) = 0.309223317190159479605808686110726052341031630748836267563970 accuracy = 1.906614097 E-70 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 491 gammaK(245,491) = -0.235653325866490221768297616048430284321763970987833406738519 gammaquad(245,491) = -0.425649211377416905376243404043861142210001678444218954674070 S(245,491) = 0.301499646272952895942365830381875505505238525125462008064515 accuracy = 4.805766932 E-71 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 499 gammaK(249,499) = 1.47306388498186262721542202328413548384838836395153609445245 gammaquad(249,499) = 0.246674762621527729387789473442490036686339222569873465213529 S(249,499) = 0.483619623548367922909394338261842370877404703459109656570352 accuracy = 3.052654617 E-72 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 503 gammaK(251,503) = -0.603024198941821415769757457785900104403889992058583640505971 gammaquad(251,503) = -0.414569367839766936559556639531322984537433886229100546462283 S(251,503) = 0.106861461426525811138404244188536667363550929800739702742938 accuracy = 7.693029452 E-73 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 509 gammaK(254,509) = 0.623856682077253417033776556662462889063358829380683654986473 gammaquad(254,509) = -0.142720734671133029135567413012403166621948290098272771904279 S(254,509) = 0.448514776480871427866200904083733273901140967659252693494920 accuracy = 9.732327534 E-74 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 521 gammaK(260,521) = 0.0399866332423493350419836149919437809515755794181829770366149 gammaquad(260,521) = -0.202258542544777340244169915360936680322280844210197050225095 S(260,521) = 0.216236714895035308805460861600641420352375166744325561414922 accuracy = 1.569045731 E-75 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 523 gammaK(261,523) = 0.145942153616811440418693940971206752283546361607209248723682 gammaquad(261,523) = -0.383109681342491532890072730801602076613458276526261268782696 S(261,523) = 0.450084990465011311623547916634989844236344157486470335444148 accuracy = 7.938411342 E-76 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 541 gammaK(270,541) = 0.0635853624590910588031457929511927855837406872779626251527917 gammaquad(270,541) = -0.268634407578233990904053700711096021722098003941794416384453 S(270,541) = 0.294599848734773518896765314212076997720628822369924848304068 accuracy = 1.422877687 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 547 gammaK(273,547) = 1.27321001866012477296871081943120036303026786612566669200130 gammaquad(273,547) = 0.118923029371962488844745484690829071543111553373918445615386 S(273,547) = 0.511908675193977204227858338374956402322947384986946867935946 accuracy = 1.284989035 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 557 gammaK(278,557) = 0.997055083864864552066817630663489065276792798742171936208791 gammaquad(278,557) = -0.00110999928762702681368015906821265345452386927381298454992072 S(278,557) = 0.493951781112211025848967187586247849973989741010185113754662 accuracy = 1.265674941 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 563 gammaK(281,563) = -0.227827739024741050367824721438309392050030071438515370882281 gammaquad(281,563) = -0.441224501468491928526771377120267047935780257184579337764111 S(281,563) = 0.321676041539627016882004179222626817228797272215103151193850 accuracy = 1.265120329 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 569 gammaK(284,569) = -0.0600705468994151385986586278585052710123203656026193823733429 gammaquad(284,569) = -0.229246099712993456738120240942268439142541512851875461020221 S(284,569) = 0.193626424472681722895672806582219907088763872766058712326550 accuracy = 1.265050253 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 571 gammaK(285,571) = 0.369896123294001710939599949838250452084674737409053914936440 gammaquad(285,571) = -0.261350203093031429993465987942401907462505438519041593191378 S(285,571) = 0.440730379468404206325783536373860792132756878983178782379194 accuracy = 1.265045205 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 577 gammaK(288,577) = -0.0999385639978090337008836060998327470460112102518806897141682 gammaquad(288,577) = -0.201473376095989288142701189908569676023345224540762139056209 S(288,577) = 0.145985133796296490422922081904425274369261415569547655965175 accuracy = 1.265040762 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 587 gammaK(293,587) = 0.217964249440891196673955057470433182732796178353464077527300 gammaquad(293,587) = -0.256024451537855692274938711473026810761727052634405153628459 S(293,587) = 0.359567135285751720263537144220555968102727023826233398553655 accuracy = 1.265040141 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 593 gammaK(296,593) = 0.440591631654440526148521785271847592173145868640876472517260 gammaquad(296,593) = -0.0791034370763867174402788020971289889234637052817826133861727 S(296,593) = 0.294006352228777820503942887517132051362009755087414620851221 accuracy = 1.265040123 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 599 gammaK(299,599) = -0.675497767279017807541181308445253417416056436865978682715367 gammaquad(299,599) = -0.429907420479168612418776454711737701575058720751706169419949 S(299,599) = 0.0868113281455832459819565369666348585134155273606293035443393 accuracy = 1.265040121 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 601 gammaK(300,601) = -0.226524112004330160631839388120246646160917087866477326989866 gammaquad(300,601) = -0.219953978292834728775997641564051649407617595917856568585872 S(300,601) = 0.101359759845223642144017047081779037883729164274841740570438 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 607 gammaK(303,607) = -0.206932655217321820108842040476905643195771282972931019935138 gammaquad(303,607) = -0.347073761092002445674499383762834400938484031618684355286812 S(303,607) = 0.238319868474216537053948023396620282503531461306778801075862 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 613 gammaK(306,613) = 0.296016789805551497668069344125703561245671738706349578491780 gammaquad(306,613) = -0.210363250890221378292566045715823031153226910114018554633521 S(306,613) = 0.353127883590434862911372178078040783233017778114512268809584 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 617 gammaK(308,617) = 0.141835764287865551405464353970175003515626271033438449870213 gammaquad(308,617) = -0.184002485528298345674809358004288178415084398722840516334861 S(308,617) = 0.249705376581398826073972077458036239568421531872158066594071 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 619 gammaK(309,619) = 0.540406663024425994426176174523101320345405527495059477461436 gammaquad(309,619) = -0.171906387018087695215907824917447902480612861080707022293081 S(309,619) = 0.436908986109034837977355106847162216593544592947701912493634 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 631 gammaK(315,631) = -0.105255167833210248383101210174550426304166633590129940039359 gammaquad(315,631) = -0.291192865705699565059619551047237609499728933701282702246585 S(315,631) = 0.233448372374379192330546137996735734376391877035871656832121 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 641 gammaK(320,641) = -0.118289633825258100794107392222848917165716498237534196778119 gammaquad(320,641) = -0.248915076320898321271086154665469707253619569251256904068877 S(320,641) = 0.184721017645049997405412609696231498525551762453274994527074 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 643 gammaK(321,643) = 1.67578474617683502835219122497332539512464065154638032888128 gammaquad(321,643) = 0.324897960415040797284302572981422783978706201631947997730192 S(321,643) = 0.507958474414624676870558951885654218033088445607435706224903 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 647 gammaK(323,647) = -0.593641245623919415403054148093804072450646693981346339630813 gammaquad(323,647) = -0.417446465734909775976419646141966717829008296628300709015099 S(323,647) = 0.115616286967454015206274097469942746300423772394294753056551 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 653 gammaK(326,653) = 0.588194971780564219826439663601142135881215080710090994462103 gammaquad(326,653) = -0.175588031310342873399051335589657109397319621446281452563996 S(326,653) = 0.464714982592284161946156941108634446446972948951292933030158 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 659 gammaK(329,659) = -0.335909847595367125151998210032012201364188211020789008955031 gammaquad(329,659) = -0.467456454826797373417449748118443363168558926026623888975468 S(329,659) = 0.294569370288610385902845875738592411345854622627369670318151 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 661 gammaK(330,661) = 0.114748906861216062562040961435071117961041090268924304161656 gammaquad(330,661) = -0.261692381579304311149487018424632320381536453207899471823468 S(330,661) = 0.314147324525176216456385764605441585970831795803937714612899 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 673 gammaK(336,673) = -0.193995631996386924021843802934426865361559437800534427979093 gammaquad(336,673) = -0.227074982591565927415950433940056308120117690097913466674421 S(336,673) = 0.125232117985005852455193033094601552369792686378618744499936 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 677 gammaK(338,677) = 1.98890471752918022380605289343812900601009764209943994966239 gammaquad(338,677) = 0.449074889870860294490553168741896616902252256923216581893441 S(338,677) = 0.540556706117907128808005310569386442295480753073770009747909 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 683 gammaK(341,683) = 1.11589779128367926881279519734350493694100042138162612345684 gammaquad(341,683) = 0.144755498437795419728143028718954995309300400358175046337822 S(341,683) = 0.408408576925766509353193833040180125687568337752310259145292 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 691 gammaK(345,691) = 0.678792675360081670873982281945567106301306443703814768285534 gammaquad(345,691) = -0.106832945544632254678907337230184401991160044342038616358524 S(345,691) = 0.441491500743682024973429088297299147043253056314141877949338 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 701 gammaK(350,701) = 0.302510871915868512317522586927272536567103870038026663863503 gammaquad(350,701) = -0.264062651618524501964562435495203602609473786041140952351607 S(350,701) = 0.410637724800005479487252051513105584769465442034684528718976 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 709 gammaK(354,709) = -0.0403874474121361544651303534599708787740203540883411655892524 gammaquad(354,709) = -0.306933548140820865964208370678765850518611102086885771369839 S(354,709) = 0.282104333243699026373475681903018247922806726858616504650346 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 719 gammaK(359,719) = -0.801398019200124517425604036688092745495164669242789988640107 gammaquad(359,719) = -0.465935843425079523701671594192252500114676485350815731919918 S(359,719) = 0.0606561504282755890219291259443853101655566556628746923079403 accuracy = 3.674139745 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 727 gammaK(363,727) = -0.0762499103929235655983582447907681373046848823841387882419082 gammaquad(363,727) = -0.294713937391438510783989003505094429455152265677829054369613 S(363,727) = 0.252051154042405433655669073279928495865462290301709110859128 accuracy = 9.287693089 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 733 gammaK(366,733) = 0.619355496363110610942721136039560246397357125088762875276778 gammaquad(366,733) = -0.0882044592990704532043154701288597977538298983085645903626876 S(366,733) = 0.393375960416495532246530444775152831945419428378502535207925 accuracy = 3.310833361 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 739 gammaK(369,739) = 0.655568310488164636420082060013543395600391803112318519408434 gammaquad(369,739) = -0.130506851436378144781921099393784031385541891372956656091465 S(369,739) = 0.453815872587677128456584650487899537901703429301422041543602 accuracy = 1.180151085 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 743 gammaK(371,743) = -0.427316252324631723877558461104748781212769199725500728391066 gammaquad(371,743) = -0.365114619232345274661061806189276355637916164502137370821711 S(371,743) = 0.147001846139626610050544961863563344489894707294958437994283 accuracy = 5.932737837 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 751 gammaK(375,751) = -0.199188442264078407495335309118939763080795467054548516471068 gammaquad(375,751) = -0.329232994134186508584339943594299676411501193516628916288701 S(375,751) = 0.225224502567637881673835280099585172252252550160780480257573 accuracy = 1.499175666 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 757 gammaK(378,757) = 0.0932767827077118895671547987144195927022693499621212847922540 gammaquad(378,757) = -0.285909228409092914586612438696149510408081333736658414241239 S(378,757) = 0.328163120256707160444077188733324292505336725081843766147826 accuracy = 5.342789491 E-54 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 761 gammaK(380,761) = 0.0626685388033128824241998015873526415931494045730702895049773 gammaquad(380,761) = -0.202478643598974468321082123605113951899195275813763099081504 S(380,761) = 0.229448022633616642535579801538358187420006817398549011887466 accuracy = 2.685529109 E-54 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 769 gammaK(384,769) = -0.270836804289403797836548385205447235718360136635086870460552 gammaquad(384,769) = -0.241662879174485454488776872114151247685456399724135992416506 S(384,769) = 0.101918245929844985274583176356531094901047591780560176016214 accuracy = 6.784494591 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 773 gammaK(386,773) = 1.56189354577670957536665533909459049881278180818754046620677 gammaquad(386,773) = 0.250441857294396397505610950113649557077516933834578105362592 S(386,773) = 0.526197740044355137611903149769275975689364843841972082588280 accuracy = 3.409915250 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 787 gammaK(393,787) = 0.534756300357615892359044197495730758547257614984265384650697 gammaquad(393,787) = -0.210604961760080372015586592860866081243739656599960037018195 S(393,787) = 0.473741236462795822503545983308168855051490027715272175608067 accuracy = 3.068625192 E-56 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 797 gammaK(398,797) = 1.15485483544888632640649047803236209035385239209851715441457 gammaquad(398,797) = 0.0627947550528970874188777528412559647939573190782041334794565 S(398,797) = 0.510436145913512021111430869464271852635276130944319724425660 accuracy = 5.493629654 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 809 gammaK(404,809) = -0.128452300609337550849460178321694491639142782653487786554179 gammaquad(404,809) = -0.260050782242606967884750843025479675102882320130316616391088 S(404,809) = 0.191681192014015858493786067934752116672922316115155021437688 accuracy = 6.970560239 E-58 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 811 gammaK(405,811) = 0.135272267589875330951415543655637558188817086874252670880253 gammaquad(405,811) = -0.349598439855815334811934503968485849693945230944609113257399 S(405,811) = 0.413099840284015091077024756861904072935197795996578672310388 accuracy = 4.941130736 E-58 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 821 gammaK(410,821) = 0.469412476125122910556429338869634375181952777063835542410841 gammaquad(410,821) = -0.197661784205928183065553224834969974393572583066607015444365 S(410,821) = 0.428276239884677182111075852666225112412958532674810027636792 accuracy = 8.842604264 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 823 gammaK(411,823) = 0.782829346795293340608630582610909879003217457076392981545504 gammaquad(411,823) = 0.0813721120735224967339602925151244855144702171428114189086930 S(411,823) = 0.305959254632714763709095951974366112050320668960962695042243 accuracy = 6.267915842 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 827 gammaK(413,827) = 0.517880509152469865072081310342764325921001518185547912118559 gammaquad(413,827) = -0.129450543492344953229253107219205667843301043601242902399652 S(413,827) = 0.384324330335514697318269344807728665889865315695051201934396 accuracy = 3.149208324 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 829 gammaK(414,829) = 0.0135332376538144784067901700876519403476435964489737383598842 gammaquad(414,829) = -0.300488040614250743293545102960692073103445239183858359602234 S(414,829) = 0.303196555482742949299724343354854648359182492182632332626165 accuracy = 2.232218393 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 839 gammaK(419,839) = -0.805943427524659087382649436507201812648354032023258269948472 gammaquad(419,839) = -0.472075563008794932887783315423736823178574424424310101177445 S(419,839) = 0.0650870170827021396873859069503270713714093532405193805587893 accuracy = 3.993699419 E-60 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 853 gammaK(426,853) = 0.699393235794289026683553708328311062504610903330029865202617 gammaquad(426,853) = -0.0526680384616819367913228832811550681349014828499256392242071 S(426,853) = 0.398404116718279690087354549702623408002796890532530265067344 accuracy = 3.588938087 E-61 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 857 gammaK(428,857) = 0.460009389235176578256409415382910384958789481114584193338123 gammaquad(428,857) = -0.0688325057232667315914321140824098585555099220919885688316331 S(428,857) = 0.294892435201487158693116937481637978263479381943791658802359 accuracy = 1.802893781 E-61 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 859 gammaK(429,859) = 0.180500774711647036607102287927855989647195127354126511280811 gammaquad(429,859) = -0.331073065202650080115292710342705458225686948327094002848603 S(429,859) = 0.417386524282258997386607854051871431156025706057036748785695 accuracy = 1.277817013 E-61 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 863 gammaK(431,863) = -0.329009842019778460222232438176661046847129005092112537815245 gammaquad(431,863) = -0.327679732613475732334018657810270213116246373692743072040212 S(431,863) = 0.159253457374419780676827263602906294663736308448040617628300 accuracy = 6.418871008 E-62 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 877 gammaK(438,877) = 0.351041505109546761676973109982267173877038518038772954350743 gammaquad(438,877) = -0.189512361883271255733064858864218110900036211445091125873663 S(438,877) = 0.361165245150160970452720347868134111803150346819425239134348 accuracy = 5.765679585 E-63 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 881 gammaK(440,881) = -0.0533973278411965038708203240027511243344225788981122340306326 gammaquad(440,881) = -0.243563051252383001952280050907877417376366918846823428219450 S(440,881) = 0.213011513680684648023481108889067583372797798733036993654765 accuracy = 2.896003445 E-63 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 883 gammaK(441,883) = 2.06723795163503580968526245789306543223722082613246873707953 gammaquad(441,883) = 0.499447230050574537819652660755329005862262685727485265027110 S(441,883) = 0.530326323317621394226195916898146279669483920043856391703474 accuracy = 2.052437728 E-63 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 887 gammaK(443,887) = -0.706865494733554603128036666318499525005908770385308942158525 gammaquad(443,887) = -0.460668961956319480670729614467845446436935956475894170821835 S(443,887) = 0.103405602297042416414610238050800690278897923656069819526922 accuracy = 1.030872918 E-63 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 907 gammaK(453,907) = 2.11818195720839144439427926403072969810260695160099008185066 gammaquad(453,907) = 0.524068009392462516762904033332965022832787571260050416327104 S(453,907) = 0.531264612451184013048509346499929840076209424528269109423418 accuracy = 3.294197459 E-65 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 911 gammaK(455,911) = -0.724636598114703035657608626935587026957645014777211298549270 gammaquad(455,911) = -0.454567816318593207049159500714273692043168788824002166388104 S(455,911) = 0.0885052629220878659670896095615433742774823244698954604337529 accuracy = 1.654370688 E-65 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 919 gammaK(459,919) = -0.413262215376975263094987169365418814467631803687931277683524 gammaquad(459,919) = -0.415503218243844077323273903701668508451289128766379675002453 S(459,919) = 0.205155723778474263286906344054876557451628701015617642338109 accuracy = 4.172286516 E-66 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 929 gammaK(464,929) = -0.0159364016168983513067185256344304577540476888466692857450165 gammaquad(464,929) = -0.231806605239266654083994020534006569717662058075387952119216 S(464,929) = 0.220156233774128987850197906021127601387322916863852682692688 accuracy = 7.455974778 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 937 gammaK(468,937) = -0.154129716322502842320562762675560245501650758177941312550525 gammaquad(468,937) = -0.230587324976141827833896756401668805421458189372200942725548 S(468,937) = 0.149867187283780138410903654659420024154759116552759193209915 accuracy = 1.880062606 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 941 gammaK(470,941) = 1.17661769425385325343995238999682527635475405109551024517122 gammaquad(470,941) = 0.104180752527445082541393287075343181719297723530020276357838 S(470,941) = 0.480486103567787193309002304783983333962659644798530956134296 accuracy = 9.440485307 E-68 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 947 gammaK(473,947) = 1.70655512973599209910249137151351429556630632420438739820507 gammaquad(473,947) = 0.431968921018472391872441514743265024561734266042501838690383 S(473,947) = 0.417686392743188521186220064944093728926938701358090456496366 accuracy = 3.359020158 E-68 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 953 gammaK(476,953) = 0.119423771809965187550519714476098046719096011678467110310740 gammaquad(476,953) = -0.197093712723951592369590098383393474405080943768527844813261 S(476,953) = 0.253202859708947735455624106718819404973615801899685135221245 accuracy = 1.195125269 E-68 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 967 gammaK(483,967) = 0.500363462973915058269593468665224312156138506673760236114948 gammaquad(483,967) = -0.0464393500513833044769672520458626514630807600950353339571371 S(483,967) = 0.293063007782930225782699604532558914312056997523832769190649 accuracy = 1.071886069 E-69 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 971 gammaK(485,971) = -0.489293358004814204122927482141634916867301958562216956993493 gammaquad(485,971) = -0.521199424566931268145037443949829072628212622720888107647228 S(485,971) = 0.273007216457157503758182149607195543355819649141440460146213 accuracy = 5.381622668 E-70 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 977 gammaK(488,977) = 0.0793203162663381970257366072621105412244277622374673662291012 gammaquad(488,977) = -0.211735571515378313927621166962295737001145190551015807809046 S(488,977) = 0.247868840994836970462849621378022477332513852952607033747329 accuracy = 1.914460245 E-70 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 983 gammaK(491,983) = -0.566552888446574331053106654443063100703577075541646504773315 gammaquad(491,983) = -0.412651423334310852370371099423817194101700509492275468446033 S(491,983) = 0.125866522328871361715477987441870310533998117995835816126571 accuracy = 6.810250409 E-71 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 991 gammaK(495,991) = -0.184507786279667410555029749005364604213633159215055786228611 gammaquad(495,991) = -0.322725035462053392841318853456262838666716673686172206160995 S(495,991) = 0.226986943062457067366910822262282199806347605842850082647088 accuracy = 1.716433712 E-71 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 997 gammaK(498,997) = 0.544317998139059057925298697670273677760188439381638039690051 gammaquad(498,997) = -0.118131623124767390890293126909323197091258635605295149223064 S(498,997) = 0.386824381847930535149006369582460300774680278758333556239061 accuracy = 6.105296584 E-72 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1009 gammaK(504,1009) = -0.394271348372199578127504850937072707049868668726022215004302 gammaquad(504,1009) = -0.278111669162048370820620271696594068033267917872405981817930 S(504,1009) = 0.0775450847475985773141609410567380613757836685047145065149089 accuracy = 7.723678468 E-73 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1013 gammaK(506,1013) = 1.09181504034399163162086231728298849764161063641725215362134 gammaquad(506,1013) = 0.0342231705609255516996419889265315170720843577448476109940324 S(506,1013) = 0.508265045508180598408964658394464500445095118024688396914853 accuracy = 3.877226994 E-73 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1019 gammaK(509,1019) = -0.295691190457388407108142361405961752307449602266146064285742 gammaquad(509,1019) = -0.455400450081033283189120133031415214371958183368155046522435 S(509,1019) = 0.304152803264312201042961788297413377762982019430697826914691 accuracy = 1.379015575 E-73 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1021 gammaK(510,1021) = 0.0513291102205264106159373816631475406931725956981662066253935 gammaquad(510,1021) = -0.290332810743952993693992338282688681051093014268459116717439 S(510,1021) = 0.312601023786488421768786447384368782513589710557703631541827 accuracy = 9.770638804 E-74 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1031 gammaK(515,1031) = -0.800929601943145989736551690174363595969579598471065564965238 gammaquad(515,1031) = -0.481502228755597994922835349035971071284970904165985402117462 S(515,1031) = 0.0776693285199390971781981422471173303832841485426829172822866 accuracy = 1.745193998 E-74 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1033 gammaK(516,1033) = -0.260545717830917678957492954508481482607719573726697151552209 gammaquad(516,1033) = -0.259979029058182349277372562084809992770528060514220351840823 S(516,1033) = 0.126343659256522134533797129215434018766824548983335796468000 accuracy = 1.236803487 E-74 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1039 gammaK(519,1039) = -0.568044264936471919856850368372869660342858531218421325749615 gammaquad(519,1039) = -0.468198102811742781875605454945782916755952435506707639152047 S(519,1039) = 0.180830106185944573684758789098867269901158490166674427320150 accuracy = 4.406335495 E-75 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1049 gammaK(524,1049) = -0.0824618422012396370257257870557160464053293311567979426542746 gammaquad(524,1049) = -0.256745169933943997964889065316635706331580576936414511606501 S(524,1049) = 0.212195740909470984234904085779732137453709685824504563345193 accuracy = 7.968342021 E-76 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1051 gammaK(525,1051) = 1.16995541512687228003574687451774924759780038215583153404199 gammaquad(525,1051) = 0.115102683353833285455337103785949272303259697134917273406411 S(525,1051) = 0.466561930223470973074148341061244071853450532540894382807815 accuracy = 5.682102938 E-76 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1061 gammaK(530,1061) = 0.266309216792092091125369663583491854453513616784875111134663 gammaquad(530,1061) = -0.280252790301778448046559868243812584579773365295148349067689 S(530,1061) = 0.410121093443761294017234383515728407773237675180500729174181 accuracy = 1.117957768 E-76 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1063 gammaK(531,1063) = -0.403536917827837553730535019408645035196482281468601789555552 gammaquad(531,1063) = -0.431498569511699290568319780042937789080584378619702445682290 S(531,1063) = 0.226449107594794662512642322718747396844947107243028832808989 accuracy = 8.288904477 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1069 gammaK(534,1069) = 0.0576646551858969992823671675991549004060734369775168245121679 gammaquad(534,1069) = -0.289624158651794063865152847948049516959232266249906998776261 S(534,1069) = 0.315191280762052935591795406222500023143642859212467016051488 accuracy = 3.762381185 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1087 gammaK(543,1087) = 1.21946512978904539946636387048090808602697305745390192014684 gammaquad(543,1087) = 0.290478219701542594324209423656483024255142627141187211904015 S(543,1087) = 0.316035571303881942681927348595321865049792378396722370258699 accuracy = 1.377268179 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1091 gammaK(545,1091) = -0.581549411076346170832567253381613909744086906438242091649937 gammaquad(545,1091) = -0.555748467860047501876884459346521482064344187421915559798270 S(545,1091) = 0.261765115539382182140182531822177653760787794607135192026628 accuracy = 1.321360831 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1093 gammaK(546,1093) = 0.0841307094445901305685413327543693647041344321435904786176155 gammaquad(546,1093) = -0.294254890556056134958532297465885245441044713708790977535110 S(546,1093) = 0.333116636538343627641765366356546033958176320136795084565893 accuracy = 1.304937950 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1097 gammaK(548,1097) = 0.580880895493134713895578299536942684922742792310249617834741 gammaquad(548,1097) = -0.0159977351212903686123661840136145510855614050578944032856497 S(548,1097) = 0.303244599628681069426072602317867531418181670774717877113371 accuracy = 1.285062108 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1103 gammaK(551,1103) = -0.281338182184197921919180130755643382294191548354774101013427 gammaquad(551,1103) = -0.307159497915383641567701626105471589044025472963260731948965 S(551,1103) = 0.163311736669358409069746562844263287063267695069747760539332 accuracy = 1.272157715 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1109 gammaK(554,1109) = 0.354797617179974895817304737860636232297492387135764633513120 gammaquad(554,1109) = -0.256933949651085468383949849808483759646074163470619102491042 S(554,1109) = 0.431168853012124194706457646995457304400420806434430734516010 accuracy = 1.267570271 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1117 gammaK(558,1117) = 0.236335613599619635723809308055355206132531918872270151737813 gammaquad(558,1117) = -0.235865258258111820795468556244898051157400598993160338613900 S(558,1117) = 0.350888619807442606081845395826453167728115167231633077021938 accuracy = 1.265677225 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1123 gammaK(561,1123) = 0.964698861398495081173018501751036648218684002802828210011939 gammaquad(561,1123) = -0.0119966953946425851838792850731353778199963804783059054411007 S(561,1123) = 0.491216108734381015618634806239669854182439829698028612634653 accuracy = 1.265266582 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1129 gammaK(564,1129) = -0.420810165108440038924776986061112257516884249163866326296006 gammaquad(564,1129) = -0.289673390763526204168665924930625220731135349002063309436524 S(564,1129) = 0.0761525779060483557979226520892029552181097200738527810307187 accuracy = 1.265120615 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1151 gammaK(575,1151) = -0.899842323221107574786112551614980368533261397746728857129290 gammaquad(575,1151) = -0.508380743015418639119564105264738330993192080165968209158133 S(575,1151) = 0.0553950655749857723161124328248908369100053484067372871597942 accuracy = 1.265041934 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1153 gammaK(576,1153) = -0.215375189386090066352357636644289258879125490430729579418479 gammaquad(576,1153) = -0.253697880378588113959832401368514765644502705185689067871067 S(576,1153) = 0.142950336675009635025852548904075702662417522003451914931628 accuracy = 1.265041405 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1163 gammaK(581,1163) = 1.00459226995588611239350898646814558619784563176536472417264 gammaquad(581,1163) = 0.102100586866482229163350998317387640558669558313105223437250 S(581,1163) = 0.397158216720531969707759059318239257638095637902140378174026 accuracy = 1.265040349 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1171 gammaK(585,1171) = 0.368598851851211400357667668091486973840491007132406946993901 gammaquad(585,1171) = -0.265250326167597612221647886012254647297069536546286964957777 S(585,1171) = 0.446530259202776937468074355451186216424427208336177240859635 accuracy = 1.265040178 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1181 gammaK(590,1181) = 0.619499380368998285729524312054427859661530795178687685410572 gammaquad(590,1181) = -0.143546249456019601840108265890532204632249669641562527193297 S(590,1181) = 0.450298432515011387795955671545386125818037658250646992837297 accuracy = 1.265040130 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1187 gammaK(593,1187) = 0.369585558957146569070566082782503279451149699877632020214185 gammaquad(593,1187) = -0.194017523979289595011257778197479854453997458661771630338619 S(593,1187) = 0.375825824370759309547761194530218658520937811168999153140490 accuracy = 1.265040124 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1193 gammaK(596,1193) = 0.325699518466995943325386712661374658540586159556971994846282 gammaquad(596,1193) = -0.122327204934247223352285701358988310617954582534596693996263 S(596,1193) = 0.282205392681965867786320571166112637043709722053560547623967 accuracy = 1.265040122 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1201 gammaK(600,1201) = -0.438769943841476280051081306392498235004804309689059427368835 gammaquad(600,1201) = -0.296909475270553794966070916080116251364382406587031990715925 S(600,1201) = 0.0745699575906156617984499138379430814719574258921770255767956 accuracy = 1.265040121 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1213 gammaK(606,1213) = 0.0497926096555254341113928107277882441646620818241855342549496 gammaquad(606,1213) = -0.308711438690490650297946236043716362583802171807792485713873 S(606,1213) = 0.330678349166378759213897426406649765837389531888018255357780 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1217 gammaK(608,1217) = 0.655602248160282654907479385900577448306397974368079942401870 gammaquad(608,1217) = 0.0176926713702802402844981993442805444397702903872694759246048 S(608,1217) = 0.307187340829520821062010353791247200673072986605055260546966 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1223 gammaK(611,1223) = -0.771697249804006877676413479229964858539506413478030481579486 gammaquad(611,1223) = -0.489242956357854308196043970138103589864781915706206365338229 S(611,1223) = 0.100485549894604072158466717807275612076238360644790242467652 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1229 gammaK(614,1229) = 0.661280156585077299765881615152726550905525727506388500277814 gammaquad(614,1229) = -0.112645584766935149970340758156436564295354446265002320594034 S(614,1229) = 0.440389101125611407825157454114987681339489644949651773904430 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1231 gammaK(615,1231) = -0.678083131152736991552928901801244066258409271143650839532172 gammaquad(615,1231) = -0.510573144549159072246522221511409950743925435648419516241711 S(615,1231) = 0.168639065913366001872354405479213860688691404033218922934675 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1237 gammaK(618,1237) = 0.461513431882506290454884499831286542611429732810395067748401 gammaquad(618,1237) = -0.151844394808228518253701461520614852125720308172598699185798 S(618,1237) = 0.379720672087510592324415060508059184361058541891669495103307 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1249 gammaK(624,1249) = -0.385163348053471511567096246482734205544513363688398323319033 gammaquad(624,1249) = -0.290059317165068675478916772124067428642372568263554373022815 S(624,1249) = 0.0946210331583146594086803948199083129484664606416592689119089 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1259 gammaK(629,1259) = -0.305878450023309671879399062090536403346367866953445423671617 gammaquad(629,1259) = -0.448101091092045871756608740588910899671540810083192904386003 S(629,1259) = 0.292324794127273250774591982909587605024259950675890080583113 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1277 gammaK(638,1277) = 0.769988042075302997486101427171720157321493992090978641713754 gammaquad(638,1277) = -0.113353615502843639456077891240771164315318671263106085627773 S(638,1277) = 0.495545023352394613398535740455866838306339224711128111601711 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1279 gammaK(639,1279) = -0.428436355240644342146370213208384267254433485512305856168737 gammaquad(639,1279) = -0.414019274751189128688934677819114396972917236751543585306420 S(639,1279) = 0.197002257615382277377081914262478396089194628921392311982596 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1283 gammaK(641,1283) = 0.00827725053578276506212793452448818828612495359307174766886581 gammaquad(641,1283) = -0.358592224096535499357634659545681884246973451883348745606326 S(641,1283) = 0.359939524729241376261630201995321035733273368939907261199244 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1289 gammaK(644,1289) = -0.156185960677019092736260139428066703819880676161294546551178 gammaquad(644,1289) = -0.279503781878122134043919438398563282955549819021759857452068 S(644,1289) = 0.198630668774496443503579412146773256322761733088614940420101 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1291 gammaK(645,1291) = 0.0734357169931121161487573496451957054455405702456222234263237 gammaquad(645,1291) = -0.378362963669741872045608881892526890597103708227667946855219 S(645,1291) = 0.412304398758993029926318804393402846658677113557059070665388 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1297 gammaK(648,1297) = -0.323666958593176423119327337479390154547143155268704060070623 gammaquad(648,1297) = -0.285222096275260185135230867079912319816670822285878285577574 S(648,1297) = 0.120623258497068407263059314266594686108346074234743203871953 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1301 gammaK(650,1301) = 0.284046962192771473954012287873928580851428444539330938308858 gammaquad(650,1301) = -0.288173293848080739579882152742208143201410931907974153350463 S(650,1301) = 0.427438740914269359143528649567673032348486927579338993455755 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1303 gammaK(651,1303) = 0.912326375802910907082831274196142447937110438857558195112888 gammaquad(651,1303) = 0.147542257815619145428653885438882030002541478430607802110386 S(651,1303) = 0.305866542767431989711148153273037633759372440497380201513979 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1307 gammaK(653,1307) = 0.106090361561593130529602801899261232324314351807311873856940 gammaquad(653,1307) = -0.302822185948220100170089803209245477934712527571395533116710 S(653,1307) = 0.353120242030079367598900257105854702116201205462920880843233 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1319 gammaK(659,1319) = -0.943012222614763954362675708872102707084595107754047658018247 gammaquad(659,1319) = -0.525982035459661107953406545998858572003917653459013505495731 S(659,1319) = 0.0517503440488203619562211184916231477368789626176472930898151 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1321 gammaK(660,1321) = -0.395503986974259885277417626227239040284934701982716966605058 gammaquad(660,1321) = -0.294162264458328802083891962643242689493237110775941961370739 S(660,1321) = 0.0936882466134252513698704212318335316340118735554404315236721 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1327 gammaK(663,1327) = 0.159094492595537796576853611574294117409406289308830243336579 gammaquad(663,1327) = -0.200055537264579415045176225788104405703235525412301821776682 S(663,1327) = 0.276891367259809773548767756288114600080297608192716366492650 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1361 gammaK(680,1361) = -0.0349589294541963324978582954962081846815711419936764479303649 gammaquad(680,1361) = -0.243980923887264600263575068493298265824451841334267774201616 S(680,1361) = 0.223848527173897512664719875973675326800254439638301291356296 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1367 gammaK(683,1367) = -0.240185272901244703106666680900182834280697292239042561924343 gammaquad(683,1367) = -0.288731227094966429604168913702664157489535587403646664878427 S(683,1367) = 0.165995701245836043804697734240222455888025986213357185350675 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1373 gammaK(686,1373) = 0.519049629255462197665177666199676029671198465748801154089248 gammaquad(686,1373) = -0.210133831793990125774299235652543790371544935114991902389373 S(686,1373) = 0.467025718795712488801710357348075796590800856800289256541990 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1381 gammaK(690,1381) = -0.149832506733227208652622762797701439175469367266201548242285 gammaquad(690,1381) = -0.359224091514569817866906964801322814644988534030705290740258 S(690,1381) = 0.281688068889474585961481201834301331947424885106497278681765 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1399 gammaK(699,1399) = -0.602470345682528170794109557844919428547987612568878297622287 gammaquad(699,1399) = -0.483344975107914757431889908101882843051347995481428594412862 S(699,1399) = 0.179519132390160871900574553224801364955991497301807917370578 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1409 gammaK(704,1409) = -0.262614293574521714066287839967100438945602200801625359654112 gammaquad(704,1409) = -0.316760792723060091787142951173437046731031111846808294352179 S(704,1409) = 0.182878846393221578426952901765315554081700603807828742415069 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1423 gammaK(711,1423) = 1.74386163738966462299128190642961378499873612847795104385248 gammaquad(711,1423) = 0.546156928068310428373096673655870078183750363108996962998555 S(711,1423) = 0.323220964255885507465320593434665473433513919994261936405459 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1427 gammaK(713,1427) = -0.374022848326005947683700593676789918059527711559086953244278 gammaquad(713,1427) = -0.508831507765813570418310167983162867043321120047624974589369 S(713,1427) = 0.319273334087566264031963935806200956457273889681496313397547 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1429 gammaK(714,1429) = -0.189010624942608084782604788192990920060663159511152211504459 gammaquad(714,1429) = -0.374186200122611611624478905101297992705919986405235974036800 S(714,1429) = 0.277137214619819520421393425708398843887061048428186173889112 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1433 gammaK(716,1433) = 0.331462695131537679421697153457391274186922230530957274182836 gammaquad(716,1433) = -0.119634280272389382957523399927717146803984047934898556814172 S(716,1433) = 0.282828084043525481100607786571856378316203037165161103069458 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1439 gammaK(719,1439) = -0.764233504017741451883960236713692884842219234217145332238332 gammaquad(719,1439) = -0.474946760342073231913203316221180598860673151176569947222926 S(719,1439) = 0.0903015995338675380237498666523034610382767347998454492571219 accuracy = 6.187747929 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1447 gammaK(723,1447) = -0.490008241208837798649724819217627686453858454075134309007885 gammaquad(723,1447) = -0.470625189984342873141092710951690296890691636346350040849175 S(723,1447) = 0.223104731991738813421599285015173787191019531496020074835411 accuracy = 3.111086059 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1451 gammaK(725,1451) = 0.0308205580757702367500083838843272347404094612861746263148474 gammaquad(725,1451) = -0.311806456292051254870303810748467565456302799495672435246582 S(725,1451) = 0.324706387656528032608566607300052225501158424485675677519275 accuracy = 2.205955443 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1453 gammaK(726,1453) = -0.0522666672574224526029329659544854970316099060802009275428446 gammaquad(726,1453) = -0.350724922265347281638408359234760408728324788433845825384885 S(726,1453) = 0.322084224427417638359072476883430929282000007162911017820885 accuracy = 1.857538618 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1459 gammaK(729,1459) = -0.181632549952581827262646881380241417160578356072703020112447 gammaquad(729,1459) = -0.488031738145382225567198248340957110542801763051352822629978 S(729,1459) = 0.394717004133246735239717448485078406776328718636138015380211 accuracy = 1.109063116 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1471 gammaK(735,1471) = -0.375425838132323429519429124485069361620045268825583440282568 gammaquad(735,1471) = -0.403204503115614120009908455461969857673867366703869515277991 S(735,1471) = 0.213010734484621984325689328998283510590701315875732878478074 accuracy = 3.953402928 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1481 gammaK(740,1481) = -0.245103821264548979984092802773883850635074862542013075632280 gammaquad(740,1481) = -0.312726822566159113008373216664452294924316967848693405827148 S(740,1481) = 0.187708535983118474778995117078578285573149400696534965087433 accuracy = 1.673508666 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1483 gammaK(741,1483) = 0.436435728521238036775291311281957041627438606044942630797853 gammaquad(741,1483) = -0.259502363099447814100565830357693686370052899383556701311446 S(741,1483) = 0.475256724545580350674698248896986012541492604157813983116258 accuracy = 1.409149124 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1487 gammaK(743,1487) = -0.736960596744798974128155156555296426841509668438907706661394 gammaquad(743,1487) = -0.479794979654427398215623793241393007604680210888540986744398 S(743,1487) = 0.108856903372720994908838046281051657863807539483340392531767 accuracy = 9.991082909 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1489 gammaK(744,1489) = -0.428269264438539599446244515156087832515968283138127526252112 gammaquad(744,1489) = -0.307661938511976001385252569019328445132159927292454625483687 S(744,1489) = 0.0910723802064548545569797613377258305051224249566154527259113 accuracy = 8.412773293 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1493 gammaK(746,1493) = 1.37269167523265905312693183884506292680926147304965951770150 gammaquad(746,1493) = 0.179084704071817614921729568791402931208687292481503129903394 S(746,1493) = 0.504811889979652933630502049775765147076191654078190218852714 accuracy = 5.964720251 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1499 gammaK(749,1499) = 0.0495127311450578991777445778471594698592492955845406899036153 gammaquad(749,1499) = -0.305642656236715957672186311516836898586173150764275444025376 S(749,1499) = 0.327958249613616536865872954601197176149955561582707914199948 accuracy = 3.560906524 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1511 gammaK(755,1511) = -0.981684153417105545347443188266429166340996274315305441141192 gammaquad(755,1511) = -0.543410334483460302998343852324759853337580947127774452923894 S(755,1511) = 0.0501442422244860933811633014620635918796315360986732191828492 accuracy = 1.269055787 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1523 gammaK(761,1523) = 1.42865941375953946291327879744673505208236556114941948685814 gammaquad(761,1523) = 0.303288833616489836443740471685400866345704374191665801473532 S(761,1523) = 0.408633370847742719647993563058437727433447390394330991864133 accuracy = 4.522446370 E-54 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1531 gammaK(765,1531) = -0.131857615116751413914370061494981251299951410047414408844329 gammaquad(765,1531) = -0.465148848853444402844149285216227067306677185283798437607736 S(765,1531) = 0.396823415021977949562066721224211106893313697581222049964020 accuracy = 2.273108721 E-54 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1543 gammaK(771,1543) = -0.104530385672068162023748813232276983920143525421573090915928 gammaquad(771,1543) = -0.306680229886003016539006016238853032388044553461870452073883 S(771,1543) = 0.252034529964248066253653293198212728241488403308252205382862 accuracy = 8.099685526 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1549 gammaK(774,1549) = -0.189179369130479405459057342738354099233269825859582502955092 gammaquad(774,1549) = -0.374083488003901933507281171734270855407466345984653991552543 S(774,1549) = 0.277121269575478487679850808995799856301641968462362000711145 accuracy = 4.834841524 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1553 gammaK(776,1553) = 0.790328573904055184086189918029143877889030989846310205700581 gammaquad(776,1553) = 0.0806519047710146593286928912876850055219856730272417385051470 S(776,1553) = 0.312145132237988226828619062263974413207519969534418274286818 accuracy = 3.427583205 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1559 gammaK(779,1559) = -1.00555063023347635409498949738768242748875748521973047515789 gammaquad(779,1559) = -0.549992970638271870789044583827935121375816483091206289215551 S(779,1559) = 0.0448582845751095035876992210524016222021336588858827557510014 accuracy = 2.045932239 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1567 gammaK(783,1567) = 0.446931122945202542205140305945297130096320774828438374266450 gammaquad(783,1567) = -0.0558780666743083682106338508311806920594760984101665000313268 S(783,1567) = 0.276994675962249351692517931006982014898955971774756118929601 accuracy = 1.028218834 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1571 gammaK(785,1571) = -0.344738722893788868558425321390294820174013452659232716340554 gammaquad(785,1571) = -0.465909028339001838281477331951090602306622453994192171303038 S(785,1571) = 0.291195887389478225289830596217406534834297223601389793901592 accuracy = 7.289176249 E-56 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1579 gammaK(789,1579) = 0.135523706944094187848770585182677107141960056947031627517579 gammaquad(789,1579) = -0.371064467840387220575870452310458268328385307049630836135296 S(789,1579) = 0.436492814653924922202851961631155397663122312222517606581850 accuracy = 3.663159274 E-56 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1583 gammaK(791,1583) = -0.573831119508374764485627346143134412925756148737392494109257 gammaquad(791,1583) = -0.425826847318536382229848497187041070887663165284682730118892 S(791,1583) = 0.136582881413944128890865407542211812467212175742752817078422 accuracy = 2.596810656 E-56 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1597 gammaK(798,1597) = 0.260007934755187632958188200247136021818096920113990635986948 gammaquad(798,1597) = -0.227700920604866064915522429689195765195191704334134766033324 S(798,1597) = 0.355394147961089263464225253160992653200982094699808332833234 accuracy = 7.788686079 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1601 gammaK(800,1601) = 0.0830741835978462579974681302931467234649075873892998596114502 gammaquad(800,1601) = -0.198809545625379069333056619916108416601995315116753696956719 S(800,1601) = 0.238040892513990724992375326932015616034914993706271096874176 accuracy = 5.521235833 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1607 gammaK(803,1607) = -0.230779065700588037442988101689337912501916117643466662845882 gammaquad(803,1607) = -0.283610213359606575179849940909661066452328744784923658492190 S(803,1607) = 0.165922385252233629750260139626866371680645502191047860910937 accuracy = 3.295257517 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1609 gammaK(804,1609) = -0.466142362610458367145469601635477497643543127027495260862601 gammaquad(804,1609) = -0.320853895679782398160072992321055305705691126726499176001532 S(804,1609) = 0.0854868909457620506540860171117211121217058602386091628633885 accuracy = 2.774421006 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1613 gammaK(806,1613) = 1.24297808582799898999888033329645918183241323651919569792816 gammaquad(806,1613) = 0.101308105855033655129052695441307693025002989456280964293209 S(806,1613) = 0.517890040322574646054784581523408967634672172031211205062768 accuracy = 1.966692036 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1619 gammaK(809,1619) = -0.151497136773235837531252592144001701192472532798505490092092 gammaquad(809,1619) = -0.393091650787093778648513644887785908574762839899388280112514 S(809,1619) = 0.315059533589079804527441732469427805966669093628945012957034 accuracy = 1.173754695 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1621 gammaK(810,1621) = -0.248427100737431674986661460575073678505139589792456010697365 gammaquad(810,1621) = -0.395390859066514609225286074118402765455920468967655309628608 S(810,1621) = 0.268896198042942081576841305116154629411332398608587666093424 accuracy = 9.882261473 E-58 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1627 gammaK(813,1627) = 0.587278700039891248626957758196839457493027773081250533409627 gammaquad(813,1627) = -0.185011066798477903505174031344354708029344002757524872790976 S(813,1627) = 0.476376587449659986060184456315257735418287273280540624111881 accuracy = 5.897790894 E-58 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1637 gammaK(818,1637) = 1.09911727349816665462478132739322724780907727018148659235916 gammaquad(818,1637) = 0.0377974564580173621279715455409157352350295335215317001277805 S(818,1637) = 0.509499376936123686790989928308326461163979879671289960793132 accuracy = 2.494966014 E-58 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1657 gammaK(828,1657) = -0.165831845486917247903081537788913429165726903827700001445599 gammaquad(828,1657) = -0.243166822201167928253204419086609525038559225983442491970327 S(828,1657) = 0.158012746070805148833093443363382723419263087266335493371708 accuracy = 4.464436787 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1663 gammaK(831,1663) = 0.125895660900773971514392691434798566961045489808679124435043 gammaquad(831,1663) = -0.215241268345763539299181242138485564641301247471059639357143 S(831,1663) = 0.275957938002169499883173676289400674492316054094581223632729 accuracy = 2.664188003 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1667 gammaK(833,1667) = -0.0803484350015012930272770812202631631237260667931089545983149 gammaquad(833,1667) = -0.399257118514303967674280871936575201110248629206458187046139 S(833,1667) = 0.356856376138778172900741327586292057110470981588977401522410 accuracy = 1.888399375 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1669 gammaK(834,1669) = 0.170789289437268611969019609349306876489023506687635785924029 gammaquad(834,1669) = -0.247824017512626665782036937414224340776606229309895959344114 S(834,1669) = 0.330994447625846752618968583658088445222339496281569788720420 accuracy = 1.589854566 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1693 gammaK(846,1693) = 0.766781783162599354188746278579459648841035935983623308063723 gammaquad(846,1693) = -0.0159229678240912755020620538338991741754481821922690096241936 S(846,1693) = 0.397116974836202673838878935441852864777258346961897649601641 accuracy = 2.015912714 E-60 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1697 gammaK(848,1697) = 0.424689281541624607676921744115569303600779595086230488710151 gammaquad(848,1697) = -0.0797949773546477441852759826781071464961706424245018208499095 S(848,1697) = 0.289947219167549014322275765729916616062613749921744322160199 accuracy = 1.428835445 E-60 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1699 gammaK(849,1699) = -0.0728579989723572906749921829739320521198426684879941494399065 gammaquad(849,1699) = -0.445170236487532071839510585220657150464401589126177236472174 S(849,1699) = 0.406551073537963576082810341970040345850919568931221587011171 accuracy = 1.202919470 E-60 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1709 gammaK(854,1709) = 0.281232701546478001670922332766353796631996064654165313164970 gammaquad(854,1709) = -0.274918995569015321386014690994980087618288388865769324240002 S(854,1709) = 0.413356287887009711305276690753381633811026339170430555028742 accuracy = 5.087439295 E-61 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1721 gammaK(860,1721) = -0.111005116362487984116479925578323894954759357451564195668162 gammaquad(860,1721) = -0.274442748302399238507152835060239078971172925745721750194676 S(860,1721) = 0.216774300354814682664462197452953538337789753413326735674054 accuracy = 1.811318518 E-61 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1723 gammaK(861,1723) = 1.43537157706633585133684392754814480484015767208256033463198 gammaquad(861,1723) = 0.195648730702574661446290925089203339970395253607768180680951 S(861,1723) = 0.519873346379801182450473367911444013778161858765548875601268 accuracy = 1.524902332 E-61 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1733 gammaK(866,1733) = 0.507429346995090076741782081286072046892134122290747838135928 gammaquad(866,1733) = -0.218835783863776944662041116325509246080660992370759320514351 S(866,1733) = 0.470397567843505699522558247178626509223097646751304554500532 accuracy = 6.448656952 E-62 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1741 gammaK(870,1741) = -0.0620254389765016292578602820243411165382114829682787769545565 gammaquad(870,1741) = -0.338885462235077247267565837661041690259458128185647115441605 S(870,1741) = 0.305728428108962010500125139346885235382784158140076934313225 accuracy = 3.239221448 E-62 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1747 gammaK(873,1747) = 1.35341288092384300755010561728699479497519245739354328512169 gammaquad(873,1747) = 0.148171177704865377863714932905408002418909341849287158537526 S(873,1747) = 0.526397331683134574775945534063041679894586820489467834916477 accuracy = 1.932694157 E-62 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1753 gammaK(876,1753) = -0.249828306298865664956038308880629077180280131471691822758658 gammaquad(876,1753) = -0.273104951531075479557228398101919085491064481400973753386676 S(876,1753) = 0.146059210514941381525964899694074563784385471795354827405984 accuracy = 1.153135917 E-62 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1759 gammaK(879,1759) = -0.499952387054758954092330079907332564317872253353361059852548 gammaquad(879,1759) = -0.455601844740903070398237423858754978723048286207027581306311 S(879,1759) = 0.203500366587602786136599385989515401410840854205031847860642 accuracy = 6.880068649 E-63 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1777 gammaK(888,1777) = -0.210594968360309460256724202392810383133922072417360501484803 gammaquad(888,1777) = -0.259809714285249389255365611645542206019132404625477582296952 S(888,1777) = 0.152405619230051119900320206886732436554296801362674772404058 accuracy = 1.461165374 E-63 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1783 gammaK(891,1783) = 0.302303508251886190263917907740179389133635556282365567296326 gammaquad(891,1783) = -0.121837161652944737517124829081880850940992854456996441245171 S(891,1783) = 0.270888452081395369010410423409557353451919870037960359873876 accuracy = 8.717493126 E-64 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1787 gammaK(893,1787) = 1.76210222654676657219596383923895516654265907724091527129235 gammaquad(893,1787) = 0.466913885323487393880517740613116385725637260239870917850009 S(893,1787) = 0.412040841187533230391941206969842305391500499838816503595103 accuracy = 6.178035089 E-64 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1789 gammaK(894,1789) = -0.106210617427459759121725709925021262581576984606176391897779 gammaquad(894,1789) = -0.347323174485179459097327367056169012086841184265755674001308 S(894,1789) = 0.292123511161967275520835209094409881588125712556535698272419 accuracy = 5.200905127 E-64 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1801 gammaK(900,1801) = -0.526763228291854439920998572132547776328008237518741383855262 gammaquad(900,1801) = -0.336450508009198055415986090469851350038983850210909580923885 S(900,1801) = 0.0709866446007219587670301302280190645854400575399734812407342 accuracy = 1.851138566 E-64 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1811 gammaK(905,1811) = -0.697280327637450618219247671284030028286552625170937817256424 gammaquad(905,1811) = -0.607705693040976617147418151522693634450265187419209397632742 S(905,1811) = 0.256993254510128818153268853402997079021963562373670485494575 accuracy = 7.826318247 E-65 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1823 gammaK(911,1823) = -0.877763355159154480894190448113657033517016195589243642043338 gammaquad(911,1823) = -0.535236053303077609184900759014956390408929683478973138866156 S(911,1823) = 0.0942939369818212625254489178830852013893230978812730720785703 accuracy = 2.785366245 E-65 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1831 gammaK(915,1831) = 0.225984449000939008755119207925555119341084280883444047396966 gammaquad(915,1831) = -0.136782828899429897607393963526353075706981763721049934208054 S(915,1831) = 0.247722425655452814358889931349287858988839873314178636717883 accuracy = 1.398798087 E-65 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1847 gammaK(923,1847) = -0.808706103432190124720882580101701308790737706280650788106772 gammaquad(923,1847) = -0.509061789813623723959201163691612903503192314386189825486984 S(923,1847) = 0.102671544711775888044748353724302900397269400946303540581426 accuracy = 3.527570039 E-66 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1861 gammaK(930,1861) = 0.176235961144085463462374169838144766568688454119585517968715 gammaquad(930,1861) = -0.245414579984361046475613730027301385008826598903212548419541 S(930,1861) = 0.331508670971284893594653506856948427148562372584282876177258 accuracy = 1.056706552 E-66 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1867 gammaK(933,1867) = 2.00017850099237549115161543140442437818037055671680990174523 gammaquad(933,1867) = 0.498807426581753620402878040380430001123674157092172242847853 S(933,1867) = 0.499263579502981359199178678133974323558093592875652241029079 accuracy = 6.303483188 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1871 gammaK(935,1871) = -0.798973629197896223028331257196636495455845900551439187227750 gammaquad(935,1871) = -0.490670449731194519003441165663317679044292960490691776690114 S(935,1871) = 0.0891691355797667043834761577878083455040322261510679453866142 accuracy = 4.466790339 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1873 gammaK(936,1873) = -0.445688025715150034698021005552629355383860902657767052976088 gammaquad(936,1873) = -0.332536813379934865200512596319393796849579443018172777947012 S(936,1873) = 0.107680167856108755834038308688196249865873668800874966642318 accuracy = 3.760125211 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1877 gammaK(938,1877) = 1.91701380531326069459999675068402740373227313929792909946105 gammaquad(938,1877) = 0.441150475289559851393087866447266100765552202077018873547543 S(938,1877) = 0.515347517442607140678017223086877093776475040869722983215935 accuracy = 2.664491253 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1879 gammaK(939,1879) = -0.385211401722598163047071293469781356487787384470263469992651 gammaquad(939,1879) = -0.395649052553943179150753148377516123418475945748986900592343 S(939,1879) = 0.201036297645941897064064938088306420966775526507528914417756 accuracy = 2.242949801 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1889 gammaK(944,1889) = -0.0679635510044713796706857908316083278577686603301016733067839 gammaquad(944,1889) = -0.259591792977892391047818983757985634616835054896503456044927 S(944,1889) = 0.223612188326424309911574209047205481071073167724526655239554 accuracy = 9.480657585 E-68 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1901 gammaK(950,1901) = 0.0963560216594330497954324874340170141944213147077105051465653 gammaquad(950,1901) = -0.352749459068082677358542992363356770299334463291554963939649 S(950,1901) = 0.398940592176091720897985279278501596989117832578118970005715 accuracy = 3.373223203 E-68 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1907 gammaK(953,1907) = 0.169170173355024991341605846645619780357370254921818538035546 gammaquad(953,1907) = -0.270960374813194504522684508454611031489310890886693895192968 S(953,1907) = 0.353564011699101433806754445631861645197877364048514561573348 accuracy = 2.012064403 E-68 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1913 gammaK(956,1913) = 0.177515860879637759807747870572972788451377364601266067397596 gammaquad(956,1913) = -0.176651233704799304893130166544097383073032548145801202428667 S(956,1913) = 0.263433110805329415739618689654175525388547514455618437630084 accuracy = 1.200146803 E-68 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1931 gammaK(965,1931) = -0.517849980150033880224516854502652336150419251496182725525680 gammaquad(965,1931) = -0.535994824744681896560045989766372261150346682723457303563425 S(965,1931) = 0.275109784596496947525053282054249274783125772419343654546073 accuracy = 2.546749944 E-69 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1933 gammaK(966,1933) = 0.239650547589485489560231589393104781495927503193316603815711 gammaquad(966,1933) = -0.235271830793345937548743262726243972863299523156208684586590 S(966,1933) = 0.353138815644194186754998717378171845309770228219240319475440 accuracy = 2.143772126 E-69 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1949 gammaK(974,1949) = 0.802547930586790063230509136182162288742911121297388486936231 gammaquad(974,1949) = -0.0616935852833978249543820051565907820497696780864168069299278 S(974,1949) = 0.461023230325379211597593735426219899440307072566300197918664 accuracy = 5.403814926 E-70 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1951 gammaK(975,1951) = -0.687826801187200353297118288923815749348494523269663130950281 gammaquad(975,1951) = -0.522673455807392134519427202718575287783947826499082501161986 S(975,1951) = 0.176817466152093724227013409951130361868363687259540655009441 accuracy = 4.548713968 E-70 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1973 gammaK(986,1973) = 0.518344151239788061962357156518302595899683326216010636443980 gammaquad(986,1973) = -0.230849824738668971009563968371484322365062101265738969526212 S(986,1973) = 0.488098140088273292217386521715312093371059446425988487350390 accuracy = 6.837990732 E-71 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1979 gammaK(989,1979) = -0.635811892844170793313070493362015600255781856428142136842287 gammaquad(989,1979) = -0.583213764748620194976482936239344504241388737044271536893263 S(989,1979) = 0.263389125974259124475872335512687885832876081977090697101304 accuracy = 4.078264999 E-71 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1987 gammaK(993,1987) = 0.895890549615990408485467168890955525943243153947557521530449 gammaquad(993,1987) = -0.0360158338239254744062115487331111384657239295257943007131895 S(993,1987) = 0.482049129467129183974144783792709080768452634064696618753180 accuracy = 2.047380379 E-71 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1993 gammaK(996,1993) = -0.233171372755777972780356047421816241131521751619212832930780 gammaquad(996,1993) = -0.269434984674828609505967282084763468369893417319999587335729 S(996,1993) = 0.150942321308934403557868831865202501209557627413915978099815 accuracy = 1.221058052 E-71 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1997 gammaK(998,1997) = 1.34740145739604082410346398251339958302413051574410650825146 gammaquad(998,1997) = 0.169246641629922989233553074099420632769317274175914715963091 S(998,1997) = 0.502550429419446166501590659409431853263428034732196141378159 accuracy = 8.651525693 E-72 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1999 gammaK(999,1999) = -0.394040109769467813627410826003058468632446796458172609601549 gammaquad(999,1999) = -0.410617764082522196040048097758975867359081416659916688310698 S(999,1999) = 0.211695706611576977899127485924709393572255578142927230411365 accuracy = 7.282328560 E-72 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2003 gammaK(1001,2003) = 1.10178642701757632473140293140953656794436616714468063761728 gammaquad(1001,2003) = 0.151077350506761006565333171257159397002348449537961769945669 S(1001,2003) = 0.397917161369742985407429931152309686325759848424055007689189 accuracy = 5.159696672 E-72 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2011 gammaK(1005,2011) = 1.13865939445646650095252796274511915705165788740622155706491 gammaquad(1005,2011) = 0.100779474027090059160081199391279223334940762598916487386874 S(1005,2011) = 0.466658087034533078866740157057487271278671389140400628713808 accuracy = 2.590163720 E-72 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2017 gammaK(1008,2017) = -0.404495443980010480688120990086884822799375866622254681520294 gammaquad(1008,2017) = -0.321268277625066533835092522298468095585098713461972548352095 S(1008,2017) = 0.117133311950052808428435645083945748578169785512251237678758 accuracy = 1.544723043 E-72 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2027 gammaK(1013,2027) = 0.511880546928118198207502201890572035540243774548304144043514 gammaquad(1013,2027) = -0.129983564932740348437603070564409599929904181427805310640866 S(1013,2027) = 0.384044689298464797976712250911175826399082323218384516719622 accuracy = 6.527049473 E-73 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2029 gammaK(1014,2029) = -0.0425458339279256575149003319079264478015625195898956027614119 gammaquad(1014,2029) = -0.332090982883784119576350067224519112644482241735682137241908 S(1014,2029) = 0.308940526881402697440465411963012196994960207217401963846715 accuracy = 5.494010663 E-73 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2039 gammaK(1019,2039) = -0.748469522027836648177565317973904936037899037925568407561136 gammaquad(1019,2039) = -0.472827245890197672608610199483581155704442083706849365901595 S(1019,2039) = 0.0967229523025368423432215535761573851460644666651634729564302 accuracy = 2.321410260 E-73 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2053 gammaK(1026,2053) = 0.0162665977543717642725190856968828922318102744815180308793931 gammaquad(1026,2053) = -0.330364541014025361556068150922243644840984161858876365823430 S(1026,2053) = 0.336639395101489281321145350292851399996828356420882543911329 accuracy = 6.949890714 E-74 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2063 gammaK(1031,2063) = -0.802950148423893440083301633963912456418296359355221041044026 gammaquad(1031,2063) = -0.507870045308954880009215945769148839212915690756069961631294 S(1031,2063) = 0.104544360885303200747616763986673753095660203770615810834813 accuracy = 2.937039761 E-74 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2069 gammaK(1034,2069) = 0.349136704567522867637478315917676248497572675533850047782268 gammaquad(1034,2069) = -0.245259543858511955799248129670446723783135303849958109682226 S(1034,2069) = 0.417981953038369728343647457938887075886939662646650625153830 accuracy = 1.751966538 E-74 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2081 gammaK(1040,2081) = -0.245657552447108686146236846424139598306963491679378388344048 gammaquad(1040,2081) = -0.318245915498344565449587169924872344014940091646044835625361 S(1040,2081) = 0.193580455662676367947369028681944580481437130892369769519006 accuracy = 6.238231721 E-75 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2083 gammaK(1041,2083) = 0.596514422259908060426916844309970083191754717766406516233774 gammaquad(1041,2083) = -0.213028055267177341596276035978091771537041982107967785585675 S(1041,2083) = 0.509450116435253136460591452393224013866956066158306988369960 accuracy = 5.252753136 E-75 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2087 gammaK(1043,2087) = -0.458201027156752092427642836330085050426199694742568511263988 gammaquad(1043,2087) = -0.379091820185637564438688348054046580664440115576881022218640 S(1043,2087) = 0.148159215785814442302338038331038525707501511023490853516121 accuracy = 3.725081335 E-75 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2089 gammaK(1044,2089) = -0.477727295675331750753039225365797669479101772248809444393624 gammaquad(1044,2089) = -0.333313882416352269598325553770749516913698392828565060071036 S(1044,2089) = 0.0926196692622216993496135630219375549130687777142929499101495 accuracy = 3.137413333 E-75 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2099 gammaK(1049,2099) = -0.287654787155821440350459278831355811508334978062805546013829 gammaquad(1049,2099) = -0.440471053187699173858649246253592002603530460817923561365332 S(1049,2099) = 0.294820681459211563076128717226742631443582643036359684429542 accuracy = 1.332743525 E-75 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2111 gammaK(1055,2111) = -0.837942651452077859055169436013272233117053385567670385333235 gammaquad(1055,2111) = -0.505885414604106065755031918968161175486949552205815839823108 S(1055,2111) = 0.0851001274923210886895947521760306576866249582687909823436944 accuracy = 4.820433344 E-76 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2113 gammaK(1056,2113) = -0.233283111548776552574238393946641007070851242596464493763374 gammaquad(1056,2113) = -0.269098722442575510601477921597239867793914115721776756173763 S(1056,2113) = 0.150644698860986463315458984469347008138234669306132875814631 accuracy = 4.077353696 E-76 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2129 gammaK(1064,2129) = -0.335161766624507912791347653278776521161560971675749838240596 gammaquad(1064,2129) = -0.352038707721437361484633277860773569039267794149253948986215 S(1064,2129) = 0.182657211705965952205805122625529308695362121264887204942186 accuracy = 1.121699103 E-76 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2131 gammaK(1065,2131) = -0.148787816273587721450608369691646798133098271224372297212951 gammaquad(1065,2131) = -0.473194001282391915156859793675724058529699688974564883474942 S(1065,2131) = 0.397000950743696970596136117417656941322381370221302607103438 accuracy = 9.641465152 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2137 gammaK(1068,2137) = -0.421390982448066558242455725544046481914024018078465996789602 gammaquad(1068,2137) = -0.328203835240995456585338863061341607085250183230860087658664 S(1068,2137) = 0.115713597234350017440741527088537550250570925048226336631694 accuracy = 6.259722249 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2141 gammaK(1070,2141) = 0.598286197386758691796779524092467223394921535252152455904440 gammaquad(1070,2141) = -0.155305226201005962074863332556966606441410800930605747128481 S(1070,2141) = 0.452656495854995195170317036934054439129210594253175802393728 accuracy = 4.803427532 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2143 gammaK(1071,2143) = 1.21539417541378389620286809274784234476588111473432111576106 gammaquad(1071,2143) = 0.295316892243985904691396737288420593453816589998501382523582 S(1071,2143) = 0.310589821514382799474957206108014254292261066445181267105322 accuracy = 4.243238174 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2153 gammaK(1076,2153) = 0.231654367090201433740329368917803070856647385975208727954385 gammaquad(1076,2153) = -0.153449444094934349359520163632711858559063136396477028363266 S(1076,2153) = 0.267493491604402082254211168598425362801729011395974009457624 accuracy = 2.523063990 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2161 gammaK(1080,2161) = -0.543391662956187130362538574493474934197089196920600639474342 gammaquad(1080,2161) = -0.353618667694938465844872285867621530128814680939779644819698 S(1080,2161) = 0.0801454458565423807621025649578432340440629022296339840567828 accuracy = 1.896390389 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2179 gammaK(1089,2179) = 1.22469963868726089747372832462063663509273216859739249996479 gammaquad(1089,2179) = 0.138238538870650313214522547581324828980990279057733185561688 S(1089,2179) = 0.472346675024186604788781831203469961938020668765682844883760 accuracy = 1.398871207 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2203 gammaK(1101,2203) = 2.25051703191554364106998160419782989895221672574522601164327 gammaquad(1101,2203) = 0.614370811031258010782812415195913408304141952317651002745719 S(1101,2203) = 0.509139844947675857180990202652815926192204230938466988989715 accuracy = 1.281953346 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2207 gammaK(1103,2207) = -0.594109215889205613878501471516675049137891341481191438896925 gammaquad(1103,2207) = -0.436007843527015330814559086687254855910574694922070909688839 S(1103,2207) = 0.137208133722426862859908863873330812774847489611392879526782 accuracy = 1.277021302 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2213 gammaK(1106,2213) = 0.869682626872001573675800367223023262667982562049807903940805 gammaquad(1106,2213) = -0.0531769602888319528538889333758537330130847101568122196137781 S(1106,2213) = 0.486277291731150314362151718940995368685330249299340913000130 accuracy = 1.272183550 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2221 gammaK(1110,2221) = -0.120049922093228247290619540500571097456389248180428510230751 gammaquad(1110,2221) = -0.355111283804689421332182806824893112432235239774928261293004 S(1110,2221) = 0.293350801851792768983554889949166478540490933290216773693342 accuracy = 1.268624753 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2237 gammaK(1118,2237) = 0.472974291559428148657077706384423713903283688180729722846012 gammaquad(1118,2237) = -0.230573999671645855644537309522897084627133787646573657748529 S(1118,2237) = 0.465336438170168040525865672396482191204809613994785799065841 accuracy = 1.265942737 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2239 gammaK(1119,2239) = -0.661982949547420749732565127918540531684087792188807248349470 gammaquad(1119,2239) = -0.508896422486749224754223919974775915795897500909803851277955 S(1119,2239) = 0.176181582070367099479750982740073953919483383893511894257056 accuracy = 1.265799806 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2243 gammaK(1121,2243) = 0.0520905893330014989553340512809180007788189029847733976994900 gammaquad(1121,2243) = -0.320833668903787005981185701033889395829217375572345609941549 S(1121,2243) = 0.345158274557236861543233146236499060760603294909332157120651 accuracy = 1.265578260 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2251 gammaK(1125,2251) = 1.39935753137681701962536718414079425625065227469913676284451 gammaquad(1125,2251) = 0.231593852226624642745520107996273968711713849058928317537365 S(1125,2251) = 0.466369551274915704346657167466387066008533221664781555510253 accuracy = 1.265310150 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2267 gammaK(1133,2267) = 0.848884370397492798335240393625874029626721180117475026586167 gammaquad(1133,2267) = 0.0475400460557121962762964762263243633387529923888647733675717 S(1133,2267) = 0.375197326113354695169726624476691898465824002863803908381289 accuracy = 1.265108108 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2269 gammaK(1134,2269) = -0.229990178118650418532830077526421060045784623017446985341154 gammaquad(1134,2269) = -0.394878524746566885427626441477146362248865479341381532183696 S(1134,2269) = 0.278179931612113845092537552721947275906405598565347041019616 accuracy = 1.265097341 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2273 gammaK(1136,2273) = 1.06032402812067918771069048226399891023238697951758724786569 gammaquad(1136,2273) = 0.209730314620681284259357746522917867231745918367223893060866 S(1136,2273) = 0.318730806872789352024385706405972538253070435722394393134415 accuracy = 1.265080653 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2281 gammaK(1140,2281) = -0.514231823683373889028067911516735894911404956550644943140238 gammaquad(1140,2281) = -0.346690252620056160934245813407338469841134265010906876271243 S(1140,2281) = 0.0878786457734822892204727203540555625587734636742222310972884 accuracy = 1.265060458 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2287 gammaK(1143,2287) = -0.534776883829274813073251684232973892669149734868755879168195 gammaquad(1143,2287) = -0.494071794073859653533914800262608398336185647820610351532807 S(1143,2287) = 0.224991533219147272994769007044879745139946299120664807761400 accuracy = 1.265052245 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2293 gammaK(1146,2293) = 0.0807703619412318750795318779948880534591651462493825464056447 gammaquad(1146,2293) = -0.301618373164926149347353979989679794889779900052918544273191 S(1146,2293) = 0.340315592468251968117376600850770878725592433666612120817124 accuracy = 1.265047349 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2297 gammaK(1148,2297) = -0.185720242431364792718142013112445743102373390497440142889232 gammaquad(1148,2297) = -0.323953167530204311525964135547606532720165738826286055447532 S(1148,2297) = 0.229407645791288226523417511429600619922809650098675832152061 accuracy = 1.265045240 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2309 gammaK(1154,2309) = 1.60402915368527484510235157683698336759068212388974005570806 gammaquad(1154,2309) = 0.315014464929422529907783891840414075249722342047852823092686 S(1154,2309) = 0.485322345490044508033966719065990570421553957895703756792612 accuracy = 1.265041940 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2311 gammaK(1155,2311) = -0.422475454888595889671632074862020928272362270330452113266295 gammaquad(1155,2311) = -0.427551506117846525303365247203957622002998163468677684356690 S(1155,2311) = 0.214637277459203476414136186310945775383836585715010210457269 accuracy = 1.265041652 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2333 gammaK(1166,2333) = 0.715012709967669166560806311505535604761070189542273381225861 gammaquad(1166,2333) = -0.121797598950362994035815674612061769771866626843238386945222 S(1166,2333) = 0.477641237323558334183967469581804121566240728737858478395611 accuracy = 1.265040350 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2339 gammaK(1169,2339) = -0.245894527868147991008980618707639012976992328577493943471368 gammaquad(1169,2339) = -0.431961319319237228132128322465947450371583567970406710588267 S(1169,2339) = 0.307355056504371064315908489734791234977219047912862513465703 accuracy = 1.265040257 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2341 gammaK(1170,2341) = -0.148724921616955467360991111637532744013030391434184780564471 gammaquad(1170,2341) = -0.376550455440817867473550035028375590992953867258082184020782 S(1170,2341) = 0.300530231070910452005500584086354234583324557494685927206968 accuracy = 1.265040236 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2347 gammaK(1173,2347) = 1.90902693492195562080664275679854651728125215056921870514406 gammaquad(1173,2347) = 0.418593189055266137312101136065668286525312273354419058042538 S(1173,2347) = 0.534266209097133023578511807503796187428832068816209498247494 accuracy = 1.265040189 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2351 gammaK(1175,2351) = -1.06138227498312544064354665729927686679442098617111615096172 gammaquad(1175,2351) = -0.579672022767371851116155163843772052905453882398928031248934 S(1175,2351) = 0.0473292690952686904729838910266248692583857834266651690749580 accuracy = 1.265040169 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2357 gammaK(1178,2357) = 0.972447386745904761166262189060487715905002294442827770847153 gammaquad(1178,2357) = -0.0215065433791274183051846731824301239608026799496744723206227 S(1178,2357) = 0.506082285796448192115398588312840223322664503889228068578423 accuracy = 1.265040149 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2371 gammaK(1185,2371) = -0.0614357956914243857880054019734716545133484931754742315650063 gammaquad(1185,2371) = -0.436795513011845479909266399625071992356937957903246154860428 S(1185,2371) = 0.404438149536161682483590387182696469044470662257188053649316 accuracy = 1.265040129 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2377 gammaK(1188,2377) = -0.426757482815484053213376844961884502497701590029965602894185 gammaquad(1188,2377) = -0.332170920176040055760593107650136820396881764188516528644482 S(1188,2377) = 0.117156321346715496762591459349134873987467116611380797698571 accuracy = 1.265040125 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2381 gammaK(1190,2381) = 0.0972964094658306920625759264583688116369762101491661236915992 gammaquad(1190,2381) = -0.355667930638190567828077491964385101013348225456076048616202 S(1190,2381) = 0.402682674058818757812979153832591788508622176132463790916578 accuracy = 1.265040124 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2383 gammaK(1191,2383) = -0.502245070819528071402745846038006415253359132758435158569394 gammaquad(1191,2383) = -0.480454756537672585644944107497027697898446407774927264557227 S(1191,2383) = 0.227699955074781190136094942002721620751916617076355784486219 accuracy = 1.265040123 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2389 gammaK(1194,2389) = -0.213066757154889711575153614367016111373830982806342313328688 gammaquad(1194,2389) = -0.390707471764654862609451080823958160700801794308828550629108 S(1194,2389) = 0.282545401782828555914496023291562251035101253003621750790126 accuracy = 1.265040122 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2393 gammaK(1196,2393) = 0.489846513748412367427518847006267193259901639038443516987507 gammaquad(1196,2393) = -0.0509056144085351318924075410469392643083759593252045651384534 S(1196,2393) = 0.294202553747643411483432758978010536460274635972998724767074 accuracy = 1.265040122 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2399 gammaK(1199,2399) = -0.975465943338048152649560760529419914298731322437348562694990 gammaquad(1199,2399) = -0.550683725573443858724418518059754064278530232206040555325536 S(1199,2399) = 0.0613279834159210971257802078411989321062422404498453194641066 accuracy = 1.265040121 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2411 gammaK(1205,2411) = -0.498162843670441283846914277422304309401297200928985468803245 gammaquad(1205,2411) = -0.529047601272624808623972892411134155056929727397896560726868 S(1205,2411) = 0.278350453944005583495178680048411554205885953407178348404168 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2417 gammaK(1208,2417) = 0.0428668164217845074791344084141326782581588385624057858912563 gammaquad(1208,2417) = -0.233276184979014223933091657594170206382095906156661900036513 S(1208,2417) = 0.253097365876019167446730508177245516772615115763364037078199 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2423 gammaK(1211,2423) = -0.216135816870265669632813820365810533406297336956686956978777 gammaquad(1211,2423) = -0.274993769284470573757597053330739502233847854528570485872351 S(1211,2423) = 0.165317115655114674174054015706359642723853174127875357143710 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2437 gammaK(1218,2437) = 0.362495869259562584743822179795269704417589606382902367869271 gammaquad(1218,2437) = -0.183059949286640488352158370681443076699214885439721757751043 S(1218,2437) = 0.362707201844659628379053310021293033072879456380255558888842 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2441 gammaK(1220,2441) = -0.0747610235091856709619637766077111397662770828609046537235043 gammaquad(1220,2441) = -0.264120844509032599902813985718671144926965739435454847818959 S(1220,2441) = 0.225141938682637928342096576310521127372172403289846149255560 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2447 gammaK(1223,2447) = -0.425765570931715677265311060435945044332537243487427760280683 gammaquad(1223,2447) = -0.366405412694365480286519856423524108952002720584799039953665 S(1223,2447) = 0.151927652154214372712215360381800220165157230271141591629792 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2459 gammaK(1229,2459) = -0.222938184292763877955456294250898883513721048973296083936445 gammaquad(1229,2459) = -0.425782774004450597863704991368612860098214853090975078758099 S(1229,2459) = 0.312725498366975047705004149680915252937473033811792403853754 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2467 gammaK(1233,2467) = 1.22738474309977512871884819703711980340679299563930590501116 gammaquad(1233,2467) = 0.121556122735599588990299771859400759766381607836086911581820 S(1233,2467) = 0.490552559009638876281835616188298491859935107602425391067138 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2473 gammaK(1236,2473) = -0.518804205988050421648915679701114794913410542571753297808994 gammaquad(1236,2473) = -0.363992033731823567383269927390354511844743021370843798178055 S(1236,2473) = 0.103009593507312633216383613830726574066561529512022793121699 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2477 gammaK(1238,2477) = 2.71598044622019950946761337306075734277440196540613946070820 gammaquad(1238,2477) = 0.810057619683716468604127088349593320199033654055924060281763 S(1238,2477) = 0.546354492879232769256184426159373222622271621208731130767792 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2503 gammaK(1251,2503) = 0.0813802099813382167452753966508535303629378248315681053779580 gammaquad(1251,2503) = -0.238289956157520629110817231481995135039692882918838976775787 S(1251,2503) = 0.277416263128319279007354940014878314550746186616960114600172 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2521 gammaK(1260,2521) = -0.612127143842550961787327970498268010457440309894605322513643 gammaquad(1260,2521) = -0.372422717546474169467237760768254461306304530825355632158804 S(1260,2521) = 0.0648050958380582282908563714747725122369847128475554620987065 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2531 gammaK(1265,2531) = 0.0505389278862106566011488216996955051780704933877120503248378 gammaquad(1265,2531) = -0.301762130032353618410963517294568499500136023137007254210765 S(1265,2531) = 0.325482904299461886622001188818756279993443551951597606147044 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2539 gammaK(1269,2539) = 0.403819063275328060763574338343230527354965154674457744431349 gammaquad(1269,2539) = -0.223424548928607759590898330956163073979501190960314397199988 S(1269,2539) = 0.423789650782642026687584721769226310447579586397351439459159 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2543 gammaK(1271,2543) = -0.268187319563986549106392893611880292744110734866936297068380 gammaquad(1271,2543) = -0.295067470391901751609218475112445001794578984242173779898386 S(1271,2543) = 0.159431501450698776104802623301930653684054224746701580359684 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2549 gammaK(1274,2549) = 0.334371595135534016338233884286752795229962378485799060229127 gammaquad(1274,2549) = -0.254001363729695443842583976689501238840370780635281896701163 S(1274,2549) = 0.419648021500685349295404043415331630018824283083274260384924 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2551 gammaK(1275,2551) = -0.818022013026731685830548505961430040502659082762682160480811 gammaquad(1275,2551) = -0.574543977609901475956295208142153715062189455564156940125639 S(1275,2551) = 0.163994884681213709238084120611708305453120108203174534328728 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2557 gammaK(1278,2557) = -0.0848825354498913855643793624913774926192558686162178905472529 gammaquad(1278,2557) = -0.370501003027228713422573077081153677630322589239341633573958 S(1278,2557) = 0.326524799861107123414370598512511554737534636628345517995419 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2579 gammaK(1289,2579) = -0.292032371776327043647637847502314328350493284694103098924688 gammaquad(1289,2579) = -0.443198559147553244224105999901807707954264160083920579629026 S(1289,2579) = 0.295658875003788220309967133471648628840916462319539077500528 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2591 gammaK(1295,2591) = -0.916327348507183272862000459508572180291411782809249253858432 gammaquad(1295,2591) = -0.537188305341167706285622473175705048293937657445846788582760 S(1295,2591) = 0.0775072953384328053812959321317867550301255632969500256488163 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2593 gammaK(1296,2593) = -0.159043809155897275465248285015390091878571524172853551477433 gammaquad(1296,2593) = -0.243077827530713233750234717622494776382620416830769944646771 S(1296,2593) = 0.162039609143825810449512465142020270106622220884311860284182 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2609 gammaK(1304,2609) = -0.131444833153003028939112749824802304548059533308556373236487 gammaquad(1304,2609) = -0.287632332143957892935277704785763452341785261619103325103502 S(1304,2609) = 0.220401724945305932063906684220469192997628078151918524020199 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2617 gammaK(1308,2617) = -0.243318810876318611031950979139609766780980635029590154010450 gammaquad(1308,2617) = -0.275851270087465310876338388557003510135650803297089704481977 S(1308,2617) = 0.152687701059372873506888334285467230137243276896346876853454 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2621 gammaK(1310,2621) = 1.16688466201122042599953959154402631976770329928487420304069 gammaquad(1310,2621) = 0.113375932941514658482749145065396833286705892972058339417042 S(1310,2621) = 0.468564239437507118192339278422852072311279136211280099303042 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2633 gammaK(1316,2633) = -0.0755732977390288904540404913922760276246078124008325749532688 gammaquad(1316,2633) = -0.281671144921758246529730162014709826066944722062589266202828 S(1316,2633) = 0.242388318400363803315969249976112323273992022333485703781049 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2647 gammaK(1323,2647) = 1.15772008754666189797351419573121911515804686523982057285246 gammaquad(1323,2647) = 0.273146149409443509775942945904491119113110503699576331684365 S(1323,2647) = 0.304224630909195999061780399177697406836950926276820066258940 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2657 gammaK(1328,2657) = 0.227518023477168684117298975038848504217194937819627345805997 gammaquad(1328,2657) = -0.154928971422215760713564749387405907263274398399720459567615 S(1328,2657) = 0.267203617018902547519060292767669392836495903125443667818523 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2659 gammaK(1329,2659) = 0.0590226903161623859851822602026189551442718423718728193170688 gammaquad(1329,2659) = -0.382297035641676593641833032053577714750203027919114515478540 S(1329,2659) = 0.410324990018861808490566813816427750148977219775897740954791 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2663 gammaK(1331,2663) = -0.556112484849660101477456940603764251288211572749951896096532 gammaquad(1331,2663) = -0.410649322758645607016260382698377856820900165907967619796603 S(1331,2663) = 0.131111636196735553980246134075940583330999420229978821865041 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2671 gammaK(1335,2671) = 0.245720165577168441592398539408619160900423793834630131670425 gammaquad(1335,2671) = -0.124271953518335897046214064249592906141049963441991491289836 S(1335,2671) = 0.245654469225813383597355744313409305540890019968020475825434 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2677 gammaK(1338,2677) = 0.114100705449782350770715296495481356792427424624192456186236 gammaquad(1338,2677) = -0.302813028782123381560972056673693829833415409323678400343074 S(1338,2677) = 0.358388708105758885700417790481159597494959768246222650157474 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2683 gammaK(1341,2683) = 2.35495931494283321933502926325402307669457902910352738773209 gammaquad(1341,2683) = 0.645587152577401942179906526447580668101926965743803847563701 S(1341,2683) = 0.530420713162018838975529713454644444986380766491968994998681 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2687 gammaK(1343,2687) = -0.825209939430395007999831014709077893552404250364075083968337 gammaquad(1343,2687) = -0.522208774669281014459813300365883930789247671048623548725194 S(1343,2687) = 0.108133927700059777916088934038451243493406164979238307395261 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2689 gammaK(1344,2689) = -0.637172437095107238420456950997847242360607437084238428989849 gammaquad(1344,2689) = -0.381063300391520743317718106093327393643222663072218177626920 S(1344,2689) = 0.0610081598468933025544064228674159866707791212182042988449168 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2693 gammaK(1346,2693) = 1.93862466418126434428562315565026645874709797979566540840356 gammaquad(1346,2693) = 0.437800785390440509702549011876017985023723095361593192321986 S(1346,2693) = 0.530044531266905704247707264178333990118302440930022881834382 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2699 gammaK(1349,2699) = 0.430499884475167778126100924411604186229721571537436602962696 gammaquad(1349,2699) = -0.127122492077336115701868831403344687726895466909505633370630 S(1349,2699) = 0.340908268893678714058041062666575115885646642935604937474640 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2707 gammaK(1353,2707) = 1.40939320546613852261152817277804719899514979879937815651681 gammaquad(1353,2707) = 0.210755972739742582533650496677897882502768145159817683719173 S(1353,2707) = 0.492480246347795580992538543011276698149662296944451671292577 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2711 gammaK(1355,2711) = -0.796543764244315217602225390888288730700173795058084449958739 gammaquad(1355,2711) = -0.493841020260244498985315344377345078684539579051621275885511 S(1355,2711) = 0.0941106376123491290170935004039512313994189378892390218982541 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2713 gammaK(1356,2713) = -0.407452672025204730390167158351962857332993102186093190173149 gammaquad(1356,2713) = -0.328349948769330729546697104505782811284491330697732138978423 S(1356,2713) = 0.123166051858376791389914512526993750578489302317754388402427 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2719 gammaK(1359,2719) = -0.784867667176430829550157231613760546172574311298479468748165 gammaquad(1359,2719) = -0.563889253354200945883365364347265523464506549534936140503002 S(1359,2719) = 0.170000670052109064825496629353046817012309649377659696699293 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2729 gammaK(1364,2729) = -0.228318951495028633854017175286324947623492691883497963123131 gammaquad(1364,2729) = -0.324242667679275025664661773991384415273463510489556260859011 S(1364,2729) = 0.208633102026938799193781022539372929942127050435541588887908 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2731 gammaK(1365,2731) = 0.234041519132000166596039106647449637681439382936915744986487 gammaquad(1365,2731) = -0.332291541025405506826258014537908214056201583890974484047873 S(1365,2731) = 0.447863138847545937192336103503134693724112726382992224491095 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2741 gammaK(1370,2741) = 0.362620743002060616441123388596349405300522225101786804948258 gammaquad(1370,2741) = -0.244241664881716562291988776594372278160081350826209412122391 S(1370,2741) = 0.424107496584151471645497771550108096428403100685504255377243 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2749 gammaK(1374,2749) = 0.257390745714725589397293732006619948340704811012525471872455 gammaquad(1374,2749) = -0.210369859853733472188107186632447015250927334301314184629815 S(1374,2749) = 0.337624367993453391029282764410101695714702809818505480943791 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2753 gammaK(1376,2753) = -0.247171989717523319062634517974746333745095769220924880004017 gammaquad(1376,2753) = -0.351046700382590456010148001962109250884539737509285724437500 S(1376,2753) = 0.226021670911702596022069380554593802994077349223891366322643 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2767 gammaK(1383,2767) = 0.208812471588021124735153656415211774041704325315353222237295 gammaquad(1383,2767) = -0.178466687297120191030068318652984312862657044224350326894052 S(1383,2767) = 0.281440255162752784144929420247431745671567515035574092859381 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2777 gammaK(1388,2777) = 0.615322526002317502299450229852229951221904315241851003786774 gammaquad(1388,2777) = 0.00831587969210185880562711437457778730118214254397247061960885 S(1388,2777) = 0.297917226520997310292918717134931266005753433835224972563225 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2789 gammaK(1394,2789) = 1.04805516061722982021702335009188622966578305991744475805439 gammaquad(1394,2789) = 0.0516655980852824975017113020968590746961518648611911234448898 S(1394,2789) = 0.470939199155250007844751219928262086136188353470482407218870 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2791 gammaK(1395,2791) = -0.670172443671964022697280735487370444995454734288634408157154 gammaquad(1395,2791) = -0.513237660554453077658646514509921238796746814704772114053661 S(1395,2791) = 0.176729547099557746924667819838613905207786776752236499522558 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2797 gammaK(1398,2797) = -0.0141198304513058304066313741774773799693997632687932794366311 gammaquad(1398,2797) = -0.343151027646338177196990960282775035946403438508847756478813 S(1398,2797) = 0.334671888047795068909651689112861055136356897333375062684854 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2801 gammaK(1400,2801) = -0.237789531739543003090998200793876490501831603429300556413365 gammaquad(1400,2801) = -0.319105447540658809573667465506742466525417965837551588102282 S(1400,2801) = 0.198793229568162288648852337762698539024226701335679839660323 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2803 gammaK(1401,2803) = 0.544162433198681995493677376690823950229010669619000542697068 gammaquad(1401,2803) = -0.213853788576720088987133280695430328230284362369769264712234 S(1401,2803) = 0.484518437447444957490757412447235269391761941954271450031697 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2819 gammaK(1409,2819) = -0.204223560738277521810857557884521858264112594314966732319531 gammaquad(1409,2819) = -0.404116611370955721707570443014846187270665267336065248472384 S(1409,2819) = 0.300595296315671802436422218754838513747853320247781092842992 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2833 gammaK(1416,2833) = -0.190736501561602532383224325126013696914988192492597134800268 gammaquad(1416,2833) = -0.255411705683077338315016719026720297501653162702534751653549 S(1416,2833) = 0.158640013606402040246355753817704521738167103665574797458914 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2837 gammaK(1418,2837) = 0.347080424269092482274054892336370722916165467197357879868697 gammaquad(1418,2837) = -0.294317152843301976439208173685389215801576295945583193232309 S(1418,2837) = 0.466455654393431988495058912300456620937779278520854711775595 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2843 gammaK(1421,2843) = 0.127560485890480377443665583076378100798628180297827574116179 gammaquad(1421,2843) = -0.311430282355746419005877525181454105677712075217117744804490 S(1421,2843) = 0.373811402304566657027002863301571546992853138798488519388406 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2851 gammaK(1425,2851) = 0.386035055308760699206560625056995078410959541165252343459066 gammaquad(1425,2851) = -0.250488484784169078715950464503146150206751771768941990608351 S(1425,2851) = 0.442110323826459485864382581591143845015944987952696316445352 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2857 gammaK(1428,2857) = -0.476486320835735203986901113815605925404621281473541819797793 gammaquad(1428,2857) = -0.354325692481911408221901561586037477954931530081494481903155 S(1428,2857) = 0.114689407518835337553353908034767864565736505353223562904462 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2861 gammaK(1430,2861) = 0.291330068098475082343364022595703832787828542994798472418374 gammaquad(1430,2861) = -0.289699903830050704946550130255057102670223017668082514212617 S(1430,2861) = 0.433973517163720045023892929796606292082079328955511682773332 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2879 gammaK(1439,2879) = -0.851906911130716089019036087479125907924397890711855715554467 gammaquad(1439,2879) = -0.513738449345956778660095591137177640278682092995993406539435 S(1439,2879) = 0.0864011858774347008163252394120971733409303488464749406000460 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2887 gammaK(1443,2887) = -0.0293676077493574057471480813989298299696284834430061008663229 gammaquad(1443,2887) = -0.271976566160708708990273475683256589885315230011922358139727 S(1443,2887) = 0.255912309552200668782321532232621362718569023016059073313745 accuracy = 8.052417925 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2897 gammaK(1448,2897) = 0.503642604571318206285578989323284177424221539209349741587319 gammaquad(1448,2897) = -0.0424265974662036719095388765700056266221755902096078710694415 S(1448,2897) = 0.292871616775728564002774789829545709350227393765318121354366 accuracy = 5.239439023 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2903 gammaK(1451,2903) = -0.974592270593626788162056730122490104044178335793544545403322 gammaquad(1451,2903) = -0.579602329600957403607229496165232409362454759842169277350134 S(1451,2903) = 0.0909324003751252931423049729621708649324363763308470618447225 accuracy = 4.048530287 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2909 gammaK(1454,2909) = 0.0833076932696815671875707092588468644888385379210560454814837 gammaquad(1454,2909) = -0.359451240768008708472570420335950429695906616997059035458745 S(1454,2909) = 0.399733772984263659598626454953855479053337647198813115790385 accuracy = 3.128298153 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2917 gammaK(1458,2917) = 1.57317823551039186196871144452045853695531873560643070870815 gammaquad(1458,2917) = 0.366648799519757054510796092826529806194941453445499924100344 S(1458,2917) = 0.418572295092457442759785643004297939167098940348482127328833 accuracy = 2.218126232 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2927 gammaK(1463,2927) = 0.155766629515915239094098726031710180557455206120876725004299 gammaquad(1463,2927) = -0.103767157014506313635207160896804968582374452811985793912240 S(1463,2927) = 0.180286539221764704568259903254862227007674288779082372583147 accuracy = 1.443209280 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2939 gammaK(1469,2939) = -0.710994696883906226256755620531457355935431319546058162164952 gammaquad(1469,2939) = -0.616033707547096450301825537325538071983664975970260705656026 S(1469,2939) = 0.259177301129238143614409434638291008475366125604992602408966 accuracy = 8.616567325 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2953 gammaK(1476,2953) = -0.239452651906596840453286911945135327953166807670849777356144 gammaquad(1476,2953) = -0.274060136015739428070646776639253755261626132277831652885348 S(1476,2953) = 0.152980392568920695738845684008436953360849710469523330662406 accuracy = 4.720604338 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2957 gammaK(1478,2957) = 1.21115771756959391668430730362226496610842131909248480660291 gammaquad(1478,2957) = 0.0884204968576963541199758436817969396271356238269075853947752 S(1478,2957) = 0.515806546886530158143454962701013795034670252327226001293886 accuracy = 3.974918045 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2963 gammaK(1481,2963) = 0.566676535893188145866920464204987828218442291590239006850804 gammaquad(1481,2963) = -0.104633713830461497100255770610388316273944264317052032426171 S(1481,2963) = 0.386622562879760910134800828897146140484230673096295226134706 accuracy = 3.071302229 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2969 gammaK(1484,2969) = -0.224628496665040251059084864757916330852722390006352841765880 gammaquad(1484,2969) = -0.314403803100171136247872553626991289690699940897050965664025 S(1484,2969) = 0.200742523016511563312250480345864112756958852921241187717441 accuracy = 2.373095135 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2971 gammaK(1485,2971) = 0.579605187740223220775854282164443634453143145804852424945484 gammaquad(1485,2971) = -0.144510142268834900969756203025446245063574640637784219185215 S(1485,2971) = 0.432966498112774355189018288889550847060270872305695772380686 accuracy = 2.177604234 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2999 gammaK(1499,2999) = -1.11125200543120555588224287762063197137469704937462545792439 gammaquad(1499,2999) = -0.600502322521062672121508376905838093843308433084697566035996 S(1499,2999) = 0.0435410906228800060735982526401953245778710006130725658104197 accuracy = 6.535090994 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- gammaquad(q) computation time (output time included): 1 min, 5 sec, 355 millisec ****** END PROGRAM ******** ? --------------------- optiplex 50 digits up to 3000 ? gamma_quad(2,3000,50) ************ A. LANGUASCO ************* ********* COMPUTATION of gamma_quad ********** ******* CONSTANTS IN ONE INTERVAL ******** Interval=[3,2999] Starting computation of gammaquad --------- q = 3 gammaK(1,3) = 0.945497280871680703239749994158189073590923645932675197138163 gammaquad(1,3) = -0.0143841605505437150931809109055540137064408119047613545470457 S(1,3) = 0.212479728819356643864244598754017124340029995415411590182454 accuracy = 1.084285754 E-76 acceleration level S1 = 7 acceleration level S2 = 7 --------- q = 5 gammaK(2,5) = 1.40489514161703774859755907975977607779602328861489255345108 gammaquad(2,5) = 0.0461458800534074903928094692264289571939474847831848110873225 S(2,5) = 0.455121951700848837080875154000185626763363990240696750399138 accuracy = 2.042067495 E-76 acceleration level S1 = 7 acceleration level S2 = 6 --------- q = 7 gammaK(3,7) = 0.592851354895253239563134841433051093287025763579094440879347 gammaquad(3,7) = -0.0926780569130860504742496824172021064041068633790206176709785 S(3,7) = 0.226944555272769894830371041180129342244529351036746072405703 accuracy = 5.300386400 E-57 acceleration level S1 = 7 acceleration level S2 = 5 --------- q = 11 gammaK(5,11) = 0.492997360604491935512824706086721562189530954851774835254915 gammaquad(5,11) = -0.195292330176206138102173964274817986915775492499884490246318 S(5,11) = 0.321896246838533578655489138419922303019455627228901049112848 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 5 --------- q = 13 gammaK(6,13) = 1.04718723173231299991374416193524756118203996127350436353882 gammaquad(6,13) = 0.0301074924322382983687295991783323956192809523937408108986854 S(6,13) = 0.386613233539687504252580505057403109771519530544669407686597 accuracy = 1.060077280 E-56 acceleration level S1 = 7 acceleration level S2 = 4 --------- q = 17 gammaK(8,17) = 0.908307099257038977863668595013501552177477501281164206215679 gammaquad(8,17) = 0.0733559744654027950404264644833646711817990741626764787885114 S(8,17) = 0.292259658161359941383609876214850900669808332334601099716289 accuracy = 7.788757945 E-76 acceleration level S1 = 7 acceleration level S2 = 4 --------- q = 19 gammaK(9,19) = 0.492301983113821272099532696256330642134390306293850069053052 gammaquad(9,19) = -0.243088467617057774407969499876796863121113385731196157509627 S(9,19) = 0.407449487530456175457485086008077363709492448286478724854543 accuracy = 1.265040140 E-77 acceleration level S1 = 7 acceleration level S2 = 4 --------- q = 23 gammaK(11,23) = 0.155094716863085535094798696890315040002505309299033681384099 gammaquad(11,23) = -0.154890982078921318724503029041788889671789272763143726559047 S(11,23) = 0.161177108330256138753567085854896497890260556620832482205674 accuracy = 1.273675785 E-51 acceleration level S1 = 7 acceleration level S2 = 3 --------- q = 29 gammaK(14,29) = 0.887324790861093605645613427550080812469140322272234441716631 gammaquad(14,29) = -0.0433981284358583477948810901248455257723797234667427146869489 S(14,29) = 0.426930241188075257275129374750566081908833582568525219850235 accuracy = 5.759097759 E-66 acceleration level S1 = 7 acceleration level S2 = 3 --------- q = 31 gammaK(15,31) = 0.126058512779792311526859685486561017736465458624578447974359 gammaquad(15,31) = -0.200758937437857720945746151120917991208049061958907334409184 S(15,31) = 0.206555073753001439277023255121825879902116142429853358867085 accuracy = 9.415378897 E-71 acceleration level S1 = 7 acceleration level S2 = 3 --------- q = 37 gammaK(18,37) = 0.733102673172264776908861817524507766265533028550684867613968 gammaquad(18,37) = -0.0394363866424350349832295582675556420651615157685345299545856 S(18,37) = 0.355836085552953195043659138265483870143760285777659794822057 accuracy = 1.265040160 E-77 acceleration level S1 = 7 acceleration level S2 = 3 --------- q = 41 gammaK(20,41) = 0.615934968228594782958889511356674356895293389810944361839551 gammaquad(20,41) = 0.0146474462054087808634946768760351881892106409107671064216982 S(20,41) = 0.246900387075084763067615536639334395403730923127213804077837 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 3 --------- q = 43 gammaK(21,43) = 0.826697991974027773137090735656156613740164441507435991444777 gammaquad(21,43) = -0.130180614883202449317010686524711545088630222920762168277954 S(21,43) = 0.498753419016721545129926976812958339630627489092556885248061 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 3 --------- q = 47 gammaK(23,47) = -0.0639434544522170508525085313015869657394869154126141368500805 gammaquad(23,47) = -0.209459271787288004741097547540618668694635413157388726454542 S(23,47) = 0.135638114107809277284180774609692862902108797820427048972974 accuracy = 1.040289171 E-53 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 53 gammaK(26,53) = 0.878110627484391660677869334383630435040536809220506131218129 gammaquad(26,53) = -0.0652459448747979912548814414925816414873627302677428088287400 S(26,53) = 0.466125374832838803957811597732194380446477502638464935946957 accuracy = 7.009381428 E-61 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 59 gammaK(29,59) = 0.0440847670224070536754955164366911856779710373826678767366528 gammaquad(29,59) = -0.305142853766388656601623065868861050649759916870252673432788 S(29,59) = 0.292034052416335981278887631210312698453716583929427521029459 accuracy = 4.659984237 E-68 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 61 gammaK(30,61) = 0.572790922762332505424740748083304517325872513539398024625139 gammaquad(30,61) = -0.0773526292133287215832462469562201037673655064398706751996700 S(30,61) = 0.329490808393050713889355045135992239544337748683892511987761 accuracy = 1.883075653 E-70 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 67 gammaK(33,67) = 1.23557939957748197022641609358833347210104709960531020897882 gammaquad(33,67) = 0.0587958118987415049252742472848842785133903271609317411283705 S(33,67) = 0.527140155924916403978312041961072436699504943071860519897874 accuracy = 2.499680646 E-77 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 71 gammaK(35,71) = -0.205359596043008924545317832926669995000916949021075394700293 gammaquad(35,71) = -0.242044003823473935753177121096661754424970762637203931810202 S(35,71) = 0.108916492394531506185307815115376513376229598650162190830617 accuracy = 1.265060101 E-77 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 73 gammaK(36,73) = 0.384775924995843291497501509840814256929310989740896201881474 gammaquad(36,73) = -0.0106270877288764761078288639634999893817559930282028274689221 S(36,73) = 0.173220192996600961237884418485028349992906259809264833516634 accuracy = 1.265040200 E-77 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 79 gammaK(39,79) = -0.0552643439689267385196440414346961350381915861160694936766142 gammaquad(39,79) = -0.266362251932808223100093639665794615536416681532658999124618 S(39,79) = 0.210720798842787023749419403938950324157234085753966498277258 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 83 gammaK(41,83) = 0.118212456627370468976883170695170955818439701716515628244978 gammaquad(41,83) = -0.304303321698196569204191138728805983678968456381626565055533 S(41,83) = 0.336465399964341572451928625153883105167277861772425620823218 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 2 --------- q = 89 gammaK(44,89) = 0.403873279807705943888953890764075539388660894950294287229824 gammaquad(44,89) = -0.0535000457334541323546467705342916317095423149508397859707145 S(44,89) = 0.229933069900192673399590673071614349020891737499095115016838 accuracy = 5.094703139 E-51 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 97 gammaK(48,97) = 0.300746656859439020714712186457003681033852432184403285037357 gammaquad(48,97) = -0.0378544644598258677125218003966780735369696960057433986959932 S(48,97) = 0.164401173209840259204686635178805113461141146979930554985629 accuracy = 8.480618239 E-56 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 101 gammaK(50,101) = 0.743144143271530600772153129534654863065341622262569584539762 gammaquad(50,101) = -0.0987097455061733317652663301175735326537132715546511787448372 S(50,101) = 0.447206214557732334896921903550336018401929669749947947265062 accuracy = 3.450772396 E-58 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 103 gammaK(51,103) = 0.00806182570974999256560305416069477960735482684701053847375948 gammaquad(51,103) = -0.263041677624444145877576157157991569653070012025138749644764 S(51,103) = 0.244353330733095437401708065046900524061510851388002826908059 accuracy = 2.199867402 E-59 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 107 gammaK(53,107) = 0.223008049343733207892431522487751558037943765725836643088233 gammaquad(53,107) = -0.274324884353086131332570042482593829795280212234965246694054 S(53,107) = 0.363787263579377706159425431948057924844614612663301457136472 accuracy = 8.930221531 E-62 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 109 gammaK(54,109) = 0.394919543721104448448278332596906393918181477684295031088120 gammaquad(54,109) = -0.130723660194230752299696529174944953070485432759383088142358 S(54,109) = 0.306464228896314718651718489676133327570963445289015644644405 accuracy = 5.686697673 E-63 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 113 gammaK(56,113) = 0.390312154927759939755071133081321697446077147656538359252212 gammaquad(56,113) = -0.0746497873526444035766661323090757412270177161662061185780631 S(56,113) = 0.248701454911558567344460040396093636057068207902051218763364 accuracy = 2.303639104 E-65 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 127 gammaK(63,127) = 0.0925121825140514524972008360928078377994614930483995389508742 gammaquad(63,127) = -0.240029525791358444365386763524206789028451962969652538433867 S(63,127) = 0.267062652419580236990783051381260341281857673287796412024752 accuracy = 9.655704995 E-74 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 131 gammaK(65,131) = -0.160864748234258697600686194676642386020123766543706938008690 gammaquad(65,131) = -0.375370893022496187498644114141635823453845238309442092875008 S(65,131) = 0.276187759969977794297726309068047223162599085788971004747752 accuracy = 4.017492337 E-76 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 137 gammaK(68,137) = 0.355771700959618339062565735682561475102132716935635029944777 gammaquad(68,137) = -0.0893938072769295505564763454290013132935838693140736510302656 S(68,137) = 0.249191492588252966722629837799767839849932819053786146462028 accuracy = 1.274978041 E-77 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 139 gammaK(69,139) = 0.175022938468019780991265082017309492726247948615123644164757 gammaquad(69,139) = -0.334887502965627210385495225489548903289538068226386405020870 S(69,139) = 0.404520443456409956833342313893582114209029445938458539002980 accuracy = 1.265670374 E-77 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 149 gammaK(74,149) = 0.592800513721625072131668400793291655323916710130822302118044 gammaquad(74,149) = -0.144256580068984995815066661954619899584692259265903002193762 S(74,149) = 0.423751612923225034782953469529968022895785463077283858834576 accuracy = 1.265040121 E-77 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 151 gammaK(75,151) = -0.143540485500707215803030793348882263507597123004822174115871 gammaquad(75,151) = -0.302286021032400859451430831074688753508181067938370697067488 S(75,151) = 0.213791512159330837120594646735299367453523385127360310425277 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 157 gammaK(78,157) = 0.488159351865002936648030633604448820619496562515099203469522 gammaquad(78,157) = -0.136536850975188832367033862703600853738474815689225157391424 S(78,157) = 0.364410610864907262045458008876326945943280008386314341318723 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 163 gammaK(81,163) = 2.74554279418505666447051533649746906191427605620474466237177 gammaquad(81,163) = 0.801499031628166681774949165178396257764328191768772255280415 S(81,163) = 0.555550914227303742021836489594656946413081789967148784127921 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 167 gammaK(83,167) = -0.376220308036904272842350094735005099998421599501646355489418 gammaquad(83,167) = -0.320278611510223262619492478366891100070930924405270946044148 S(83,167) = 0.116752813478467646959583241912807889331366743321282130950464 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 173 gammaK(86,173) = 1.24479947293024505450446269190065729708962488442017819942483 gammaquad(86,173) = 0.0830850857345306808065876336676420925067590235494501148148615 S(86,173) = 0.524334151909377372762697490223265069209024776487051559646343 accuracy = 1.265040120 E-77 acceleration level S1 = 7 acceleration level S2 = 1 --------- q = 179 gammaK(89,179) = -0.0539311348925890910188524806093861892147164490554103754738157 gammaquad(89,179) = -0.353869425524519067791023090977384164083856417472009260391426 S(89,179) = 0.312332549634851614988962568565889377971995570983121073911466 accuracy = 2.576298746 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 181 gammaK(90,181) = 0.310789870137041930724536373484121652462570890347987218033398 gammaquad(90,181) = -0.172868421047262874685947954461538623255565229681274186191994 S(90,181) = 0.313823086584489879640329788318507758022294195851094242948740 accuracy = 6.513114808 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 191 gammaK(95,191) = -0.453588151546997252815275870547274457045583489574705587443602 gammaquad(95,191) = -0.333902672725834657442557912968738108527688344242992295419427 S(95,191) = 0.0932868247732659524221569515050946506717164903070406937200451 accuracy = 6.713822773 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 193 gammaK(96,193) = 0.0975471264188241497013082169164668573860658121655621221954173 gammaquad(96,193) = -0.105715293065487559066151889092717947904297121000986405042557 S(96,193) = 0.140783933907959827792183781266099661065585059655176357874200 accuracy = 1.696123648 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 197 gammaK(98,197) = 0.954354601996743119823542405998188206521686224131467914365195 gammaquad(98,197) = -0.0290330192489716952280685526859239298638104945157692623192066 S(98,197) = 0.492732759714848386500095374743276117372080534993855159027828 accuracy = 1.082162223 E-56 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 199 gammaK(99,199) = -0.273088493247754470158588875951848607958418115486293410228900 gammaquad(99,199) = -0.340923181924444457125177557489863301657048052626879988930682 S(99,199) = 0.191012003925000322057473722312250772420538223973204312859397 accuracy = 2.733011737 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 211 gammaK(105,211) = 0.424774238463551240286910775492231225444683072766637566442306 gammaquad(105,211) = -0.241934145703132528202805190770161351798998748200224805635409 S(105,211) = 0.441578745569488942404017825503290583287908955598825330831115 accuracy = 7.076779327 E-61 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 223 gammaK(111,223) = 0.0102747995014170240537028582218802902295405065878495621034857 gammaquad(111,223) = -0.263140402433944569253157093770905720354210051119282059085229 S(111,223) = 0.256099487384067228220017294932018973516956366858092004949787 accuracy = 1.826456718 E-64 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 227 gammaK(113,227) = 0.0265282466662660257711679032259135735213118296607719201737530 gammaquad(113,227) = -0.338234284458165040805097951136812297994178597447829552567183 S(113,227) = 0.339496305982710879630917784216951613415996238121315128786493 accuracy = 1.162103655 E-65 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 229 gammaK(114,229) = 0.271591123940222832284183092004943661415417491899810787035654 gammaquad(114,229) = -0.190661623714753067102757662025097468035655180296036444712146 S(114,229) = 0.314541128659526238401776322931225859451174299177968272775919 accuracy = 2.930969395 E-66 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 233 gammaK(116,233) = 0.279134685939512288852518180423991634629279786651705016866952 gammaquad(116,233) = -0.124492923431747430026098055385979538976066870273134675143568 S(116,233) = 0.252312338699853357716792005781878616035127074266097278603459 accuracy = 1.863993695 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 239 gammaK(119,239) = -0.510346919924465600595597100655958799487060212268148494776934 gammaquad(119,239) = -0.355466994625400296204525303661587654692004081378116398636386 S(119,239) = 0.0887883591338996163542831323372597064265458148326913746286564 accuracy = 2.987813181 E-69 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 241 gammaK(120,241) = 0.00339589862209132501998269365422964821139106158639329357812744 gammaquad(120,241) = -0.125860362254877223201391707283788966211851004272048563916790 S(120,241) = 0.116131651287817354470828030530256257536260577223544694377372 accuracy = 7.532302232 E-70 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 251 gammaK(125,251) = -0.252799831129637705704786206137308036207277855942524021423860 gammaquad(125,251) = -0.417453476653488772406635892546114210920271968431305293283355 S(125,251) = 0.280002655210406351781805618999443686334074349228875806700153 accuracy = 7.662380437 E-73 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 257 gammaK(128,257) = 0.337852975874596531645929291920530692841856339022972554844701 gammaquad(128,257) = -0.113035927446272504834975440222434163390103357664857781992093 S(128,257) = 0.271124376155259794489284237911681432757096517744728932777641 accuracy = 1.227225669 E-74 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 263 gammaK(131,263) = -0.390820309171766731319068163237395396339998482445327366919625 gammaquad(131,263) = -0.341583926558603441238861191184911387655713523261210785636656 S(131,263) = 0.135539890231922814985651677764295612977345038068958237140913 accuracy = 2.086963514 E-76 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 269 gammaK(134,269) = 0.620858450697879574343790911437681539739831342417402407340652 gammaquad(134,269) = -0.143057550547919107523803623878511935728714602445104277812570 S(134,269) = 0.443048881531930090393049913215831740826482795834471456083274 accuracy = 1.578376920 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 271 gammaK(135,271) = -0.353849063140421521232186444799499096366837271552190458743431 gammaquad(135,271) = -0.371240133416749089149189827638061367334270574156832381359516 S(135,271) = 0.183941307733798141681065364362004667226952805178113960023858 accuracy = 1.343958904 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 277 gammaK(138,277) = 0.341056878707485643335795427913036213775539082743700104952415 gammaquad(138,277) = -0.186134570074266928724211460295713949403188094314826682246328 S(138,277) = 0.346474571916800803834374758401643993176531874911726968566134 accuracy = 1.266300629 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 281 gammaK(140,281) = 0.106052521109155327296859873849923456426398753796689102208249 gammaquad(140,281) = -0.160921440044009159749508393327644469333611512682855299161395 S(140,281) = 0.203879210117633705960247904672796961938203950713326761823345 accuracy = 1.265120044 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 283 gammaK(141,283) = 0.580366332995681093951046550782838993666635333586131586304289 gammaquad(141,283) = -0.190695759818013261104671646650728746075428706537515173784092 S(141,283) = 0.470869268695918989596780051214497285098816526694230866562944 accuracy = 1.265060244 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 293 gammaK(146,293) = 1.63032234782806628704267271074535261737317602848093310838091 gammaquad(146,293) = 0.265588143051994213273257499498008652928790892899627938571471 S(146,293) = 0.539846707901393267052976389671221597212883123638969250982774 accuracy = 1.265040141 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 307 gammaK(153,307) = 0.657577589704655470582516012724982516749278999820623651305178 gammaquad(153,307) = -0.156498421584102143766600975382771971535869008867088280631833 S(153,307) = 0.475929622077627269329756918726827785002263887560523860057812 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 311 gammaK(155,311) = -0.624123092306631066595111622178138685385033103759240410315581 gammaquad(155,311) = -0.388163131820930167214391922290338582866764680569916972768534 S(155,311) = 0.0668438551640997401520038602892810429546998635088485629652538 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 313 gammaK(156,313) = 0.00887695430676460178589452016436053788326020680106883144435292 gammaquad(156,313) = -0.151109989843144394420585609233026137960398159513631109116288 S(156,313) = 0.146339808037327731825265617217037800566173937163625028158740 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 317 gammaK(158,317) = 0.854752339344671242786759320919257806610089309748880482466137 gammaquad(158,317) = -0.0646323098131341775348362019712248009664956859014518106528220 S(158,317) = 0.482896293134398152386760542542722990174423911717842885114155 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 331 gammaK(165,331) = 0.870750189616758335519170114322993342678836868226687788321830 gammaquad(165,331) = -0.0416427168015584467930198438654902912765642953320564584939177 S(165,331) = 0.468226723162396610157476693694295088666441733845831227462766 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 337 gammaK(168,337) = -0.0444333655343140204973870087511383499075616232558211087014200 gammaquad(168,337) = -0.161945748580343186643388534671203900254046794588493820460020 S(168,337) = 0.131068228119209447637991359827407893138216346399266455529140 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 347 gammaK(173,347) = 0.306283809064693342323095740631986935347340226729476670657162 gammaquad(173,347) = -0.230222655738654430015814453437855707252902209084945065074016 S(173,347) = 0.374911778797089454945637357212829146697389983899952307086268 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 349 gammaK(174,349) = 0.243480902351584587777566310344706627926869557200360804741513 gammaquad(174,349) = -0.209576445320504492632170858595026186730760834245560567565917 S(174,349) = 0.322904436837959965884173149510915937893694340809159989492382 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 353 gammaK(176,353) = 0.341185561571711322157835139371965968743403725864698728141294 gammaquad(176,353) = -0.115336084987719074494430513033655129861547623333348554656048 S(176,353) = 0.277595814556339939028751889371359747752438023257461518466083 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 359 gammaK(179,359) = -0.594359650156676925068690732080870134964695087157825083390343 gammaquad(179,359) = -0.391338259781168184651797782917835181118631915006738028845731 S(179,359) = 0.0859415039926505616802344100539298902037215978709796748096811 accuracy = 2.590772335 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 367 gammaK(183,367) = -0.0114812326514358685459330016124335725308893797244172361796278 gammaquad(183,367) = -0.269447316372073353266241778067951322630579560576808861648856 S(183,367) = 0.255639265827701634469205015049769469199110736240538592925183 accuracy = 1.655416680 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 373 gammaK(186,373) = 0.300053717205031512468746152433758208387931511385294335838643 gammaquad(186,373) = -0.203966889987604663279815858877604457259438581685227777412719 S(186,373) = 0.346034637811029269593038754173647991375556464229183195690065 accuracy = 2.103193323 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 379 gammaK(189,379) = 1.04677504875426168733200724428587026408624314659690298652978 gammaquad(189,379) = 0.0414415937849423286769064856786658073224903041656644107774401 S(189,379) = 0.474092046723031866380873278549383573519455606686528649422278 accuracy = 2.671394745 E-54 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 383 gammaK(191,383) = -0.498766146702360931954254464648974865732296065147896984674197 gammaquad(191,383) = -0.377459175663241208690914050508971268596425052944785893907921 S(191,383) = 0.120290716200567750580288055701299974143652223069513085253991 accuracy = 6.749158682 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 389 gammaK(194,389) = 0.306671747094388729472288128086911847714943197596353898224201 gammaquad(194,389) = -0.253046588329652440337824332099779787406335539847982214474412 S(194,389) = 0.398697436949503446449163473161750952692777769550529712822237 accuracy = 8.568958013 E-56 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 397 gammaK(198,397) = 0.466659731478946139600603989469579229913608151985395113187753 gammaquad(198,397) = -0.150875985177048743625675453885188928068043334979946345975321 S(198,397) = 0.376650375814644047752892307167735033828531391084859250874192 accuracy = 5.466023475 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 401 gammaK(200,401) = 0.00818440324329625388886783207907360428899261778706426748429175 gammaquad(200,401) = -0.198122996689986769874947091649202019259606302264168198634568 S(200,401) = 0.194722746527501685337067658829552134240505189506525605120352 accuracy = 1.380308958 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 409 gammaK(204,409) = -0.130528022476625224300311130195381965016083672113606250056441 gammaquad(204,409) = -0.180418130090850210765523718821713549054297870304376228294317 S(204,409) = 0.107784369886798870985817268663816211047098202553444477720443 accuracy = 8.799469609 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 419 gammaK(209,419) = -0.295398039028251989137705348428489682605610112797150035232698 gammaquad(209,419) = -0.438663091680163128051779937092027085117905647403272632163986 S(209,419) = 0.283741738529766633804658203162847446697956825606977733663901 accuracy = 2.817232151 E-60 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 421 gammaK(210,421) = 0.0552657818887817403526932131214258488470562438249196934181232 gammaquad(210,421) = -0.263212613085305400912840387668847369507873770780055510627267 S(210,421) = 0.283651893513407721782533760624325654081971485475878853813380 accuracy = 1.415355865 E-60 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 431 gammaK(215,431) = -0.625615785054681922531846520641843589383009680845269587715150 gammaquad(215,431) = -0.405716869383013427367616039202779712491185969251190123467846 S(215,431) = 0.0858553627974122942554745616652008826208526692825939526292086 accuracy = 4.528296295 E-62 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 433 gammaK(216,433) = -0.0592853626845265661696594540702222226700219802117132492669128 gammaquad(216,433) = -0.180490296905374427867979734108210431490451270917061186219494 S(216,433) = 0.143821298748293448201297825853223690561080314024513597282876 accuracy = 2.274679069 E-62 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 439 gammaK(219,439) = -0.482071322637443935302778269583995414272385674025873492197396 gammaquad(219,439) = -0.422273841110067229670180069880765772169840069068962714320915 S(219,439) = 0.174292404205643011619255304803673597339176740542265574973053 accuracy = 2.882839793 E-63 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 443 gammaK(221,443) = 0.542308496631491230665169755400313713190146438891493282220092 gammaquad(221,443) = -0.125410819423925215510198355319679432491250255966479320128243 S(221,443) = 0.389671889266769093695627116212319008879117890008182028020418 accuracy = 7.272917742 E-64 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 449 gammaK(224,449) = -0.0177727715471409931849710241821597567915092925963527926014313 gammaquad(224,449) = -0.209072911355682274274643031489080528340596300081078515177795 S(224,449) = 0.193370651823470868872722785256453652175401281021139659346335 accuracy = 9.214556415 E-65 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 457 gammaK(228,457) = -0.106837948871164538361542784332213591768998063909560140017578 gammaquad(228,457) = -0.190159706244437295761748088906129860815556413208463647220828 S(228,457) = 0.130025070196032433709054403558933718950335537250531084082464 accuracy = 5.861938791 E-66 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 461 gammaK(230,461) = 0.780659989377687750751127853231358856968898428055539000919375 gammaquad(230,461) = -0.0790298909484758743961188934885980252550635842359857111566280 S(230,461) = 0.462693148634062523121277684024631229239888207086453659187425 accuracy = 1.478339827 E-66 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 463 gammaK(231,463) = 0.630856786876787147488538635003422954439581313862465878385583 gammaquad(231,463) = 0.00187329506676060591789376524278352727993214710360823538035513 S(231,463) = 0.306912536624786394153128964400422852600502645322872075228897 accuracy = 7.423836956 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 467 gammaK(233,467) = 0.0214397802030996752052274973632893631138900393212849476602971 gammaquad(233,467) = -0.340590319049689512980242478107257111440065857825642238203320 S(233,467) = 0.344715435269620362051172180341762019406720274492121008644398 accuracy = 1.872028150 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 479 gammaK(239,479) = -0.735180236083431693441599267097057557075709988696630798089586 gammaquad(239,479) = -0.432859600387500961623167474643456878423967597068407821109266 S(239,479) = 0.0588137285828029859953420274637569528004565199107481054267816 accuracy = 3.000367018 E-69 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 487 gammaK(243,487) = 0.693736807431706964356317814361603764072335701797670422375753 gammaquad(243,487) = 0.0312785596500946303596651276222872026322962069790751279459409 S(243,487) = 0.309223317190159479605808686110726052341031630748836267563970 accuracy = 1.906614097 E-70 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 491 gammaK(245,491) = -0.235653325866490221768297616048430284321763970987833406738519 gammaquad(245,491) = -0.425649211377416905376243404043861142210001678444218954674070 S(245,491) = 0.301499646272952895942365830381875505505238525125462008064515 accuracy = 4.805766932 E-71 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 499 gammaK(249,499) = 1.47306388498186262721542202328413548384838836395153609445245 gammaquad(249,499) = 0.246674762621527729387789473442490036686339222569873465213529 S(249,499) = 0.483619623548367922909394338261842370877404703459109656570352 accuracy = 3.052654617 E-72 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 503 gammaK(251,503) = -0.603024198941821415769757457785900104403889992058583640505971 gammaquad(251,503) = -0.414569367839766936559556639531322984537433886229100546462283 S(251,503) = 0.106861461426525811138404244188536667363550929800739702742938 accuracy = 7.693029452 E-73 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 509 gammaK(254,509) = 0.623856682077253417033776556662462889063358829380683654986473 gammaquad(254,509) = -0.142720734671133029135567413012403166621948290098272771904279 S(254,509) = 0.448514776480871427866200904083733273901140967659252693494920 accuracy = 9.732327534 E-74 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 521 gammaK(260,521) = 0.0399866332423493350419836149919437809515755794181829770366149 gammaquad(260,521) = -0.202258542544777340244169915360936680322280844210197050225095 S(260,521) = 0.216236714895035308805460861600641420352375166744325561414922 accuracy = 1.569045731 E-75 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 523 gammaK(261,523) = 0.145942153616811440418693940971206752283546361607209248723682 gammaquad(261,523) = -0.383109681342491532890072730801602076613458276526261268782696 S(261,523) = 0.450084990465011311623547916634989844236344157486470335444148 accuracy = 7.938411342 E-76 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 541 gammaK(270,541) = 0.0635853624590910588031457929511927855837406872779626251527917 gammaquad(270,541) = -0.268634407578233990904053700711096021722098003941794416384453 S(270,541) = 0.294599848734773518896765314212076997720628822369924848304068 accuracy = 1.422877687 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 547 gammaK(273,547) = 1.27321001866012477296871081943120036303026786612566669200130 gammaquad(273,547) = 0.118923029371962488844745484690829071543111553373918445615386 S(273,547) = 0.511908675193977204227858338374956402322947384986946867935946 accuracy = 1.284989035 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 557 gammaK(278,557) = 0.997055083864864552066817630663489065276792798742171936208791 gammaquad(278,557) = -0.00110999928762702681368015906821265345452386927381298454992072 S(278,557) = 0.493951781112211025848967187586247849973989741010185113754662 accuracy = 1.265674941 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 563 gammaK(281,563) = -0.227827739024741050367824721438309392050030071438515370882281 gammaquad(281,563) = -0.441224501468491928526771377120267047935780257184579337764111 S(281,563) = 0.321676041539627016882004179222626817228797272215103151193850 accuracy = 1.265120329 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 569 gammaK(284,569) = -0.0600705468994151385986586278585052710123203656026193823733429 gammaquad(284,569) = -0.229246099712993456738120240942268439142541512851875461020221 S(284,569) = 0.193626424472681722895672806582219907088763872766058712326550 accuracy = 1.265050253 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 571 gammaK(285,571) = 0.369896123294001710939599949838250452084674737409053914936440 gammaquad(285,571) = -0.261350203093031429993465987942401907462505438519041593191378 S(285,571) = 0.440730379468404206325783536373860792132756878983178782379194 accuracy = 1.265045205 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 577 gammaK(288,577) = -0.0999385639978090337008836060998327470460112102518806897141682 gammaquad(288,577) = -0.201473376095989288142701189908569676023345224540762139056209 S(288,577) = 0.145985133796296490422922081904425274369261415569547655965175 accuracy = 1.265040762 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 587 gammaK(293,587) = 0.217964249440891196673955057470433182732796178353464077527300 gammaquad(293,587) = -0.256024451537855692274938711473026810761727052634405153628459 S(293,587) = 0.359567135285751720263537144220555968102727023826233398553655 accuracy = 1.265040141 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 593 gammaK(296,593) = 0.440591631654440526148521785271847592173145868640876472517260 gammaquad(296,593) = -0.0791034370763867174402788020971289889234637052817826133861727 S(296,593) = 0.294006352228777820503942887517132051362009755087414620851221 accuracy = 1.265040123 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 599 gammaK(299,599) = -0.675497767279017807541181308445253417416056436865978682715367 gammaquad(299,599) = -0.429907420479168612418776454711737701575058720751706169419949 S(299,599) = 0.0868113281455832459819565369666348585134155273606293035443393 accuracy = 1.265040121 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 601 gammaK(300,601) = -0.226524112004330160631839388120246646160917087866477326989866 gammaquad(300,601) = -0.219953978292834728775997641564051649407617595917856568585872 S(300,601) = 0.101359759845223642144017047081779037883729164274841740570438 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 607 gammaK(303,607) = -0.206932655217321820108842040476905643195771282972931019935138 gammaquad(303,607) = -0.347073761092002445674499383762834400938484031618684355286812 S(303,607) = 0.238319868474216537053948023396620282503531461306778801075862 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 613 gammaK(306,613) = 0.296016789805551497668069344125703561245671738706349578491780 gammaquad(306,613) = -0.210363250890221378292566045715823031153226910114018554633521 S(306,613) = 0.353127883590434862911372178078040783233017778114512268809584 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 617 gammaK(308,617) = 0.141835764287865551405464353970175003515626271033438449870213 gammaquad(308,617) = -0.184002485528298345674809358004288178415084398722840516334861 S(308,617) = 0.249705376581398826073972077458036239568421531872158066594071 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 619 gammaK(309,619) = 0.540406663024425994426176174523101320345405527495059477461436 gammaquad(309,619) = -0.171906387018087695215907824917447902480612861080707022293081 S(309,619) = 0.436908986109034837977355106847162216593544592947701912493634 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 631 gammaK(315,631) = -0.105255167833210248383101210174550426304166633590129940039359 gammaquad(315,631) = -0.291192865705699565059619551047237609499728933701282702246585 S(315,631) = 0.233448372374379192330546137996735734376391877035871656832121 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 641 gammaK(320,641) = -0.118289633825258100794107392222848917165716498237534196778119 gammaquad(320,641) = -0.248915076320898321271086154665469707253619569251256904068877 S(320,641) = 0.184721017645049997405412609696231498525551762453274994527074 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 643 gammaK(321,643) = 1.67578474617683502835219122497332539512464065154638032888128 gammaquad(321,643) = 0.324897960415040797284302572981422783978706201631947997730192 S(321,643) = 0.507958474414624676870558951885654218033088445607435706224903 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 647 gammaK(323,647) = -0.593641245623919415403054148093804072450646693981346339630813 gammaquad(323,647) = -0.417446465734909775976419646141966717829008296628300709015099 S(323,647) = 0.115616286967454015206274097469942746300423772394294753056551 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 653 gammaK(326,653) = 0.588194971780564219826439663601142135881215080710090994462103 gammaquad(326,653) = -0.175588031310342873399051335589657109397319621446281452563996 S(326,653) = 0.464714982592284161946156941108634446446972948951292933030158 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 659 gammaK(329,659) = -0.335909847595367125151998210032012201364188211020789008955031 gammaquad(329,659) = -0.467456454826797373417449748118443363168558926026623888975468 S(329,659) = 0.294569370288610385902845875738592411345854622627369670318151 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 661 gammaK(330,661) = 0.114748906861216062562040961435071117961041090268924304161656 gammaquad(330,661) = -0.261692381579304311149487018424632320381536453207899471823468 S(330,661) = 0.314147324525176216456385764605441585970831795803937714612899 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 673 gammaK(336,673) = -0.193995631996386924021843802934426865361559437800534427979093 gammaquad(336,673) = -0.227074982591565927415950433940056308120117690097913466674421 S(336,673) = 0.125232117985005852455193033094601552369792686378618744499936 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 677 gammaK(338,677) = 1.98890471752918022380605289343812900601009764209943994966239 gammaquad(338,677) = 0.449074889870860294490553168741896616902252256923216581893441 S(338,677) = 0.540556706117907128808005310569386442295480753073770009747909 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 683 gammaK(341,683) = 1.11589779128367926881279519734350493694100042138162612345684 gammaquad(341,683) = 0.144755498437795419728143028718954995309300400358175046337822 S(341,683) = 0.408408576925766509353193833040180125687568337752310259145292 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 691 gammaK(345,691) = 0.678792675360081670873982281945567106301306443703814768285534 gammaquad(345,691) = -0.106832945544632254678907337230184401991160044342038616358524 S(345,691) = 0.441491500743682024973429088297299147043253056314141877949338 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 701 gammaK(350,701) = 0.302510871915868512317522586927272536567103870038026663863503 gammaquad(350,701) = -0.264062651618524501964562435495203602609473786041140952351607 S(350,701) = 0.410637724800005479487252051513105584769465442034684528718976 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 709 gammaK(354,709) = -0.0403874474121361544651303534599708787740203540883411655892524 gammaquad(354,709) = -0.306933548140820865964208370678765850518611102086885771369839 S(354,709) = 0.282104333243699026373475681903018247922806726858616504650346 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 719 gammaK(359,719) = -0.801398019200124517425604036688092745495164669242789988640107 gammaquad(359,719) = -0.465935843425079523701671594192252500114676485350815731919918 S(359,719) = 0.0606561504282755890219291259443853101655566556628746923079403 accuracy = 3.674139745 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 727 gammaK(363,727) = -0.0762499103929235655983582447907681373046848823841387882419082 gammaquad(363,727) = -0.294713937391438510783989003505094429455152265677829054369613 S(363,727) = 0.252051154042405433655669073279928495865462290301709110859128 accuracy = 9.287693089 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 733 gammaK(366,733) = 0.619355496363110610942721136039560246397357125088762875276778 gammaquad(366,733) = -0.0882044592990704532043154701288597977538298983085645903626876 S(366,733) = 0.393375960416495532246530444775152831945419428378502535207925 accuracy = 3.310833361 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 739 gammaK(369,739) = 0.655568310488164636420082060013543395600391803112318519408434 gammaquad(369,739) = -0.130506851436378144781921099393784031385541891372956656091465 S(369,739) = 0.453815872587677128456584650487899537901703429301422041543602 accuracy = 1.180151085 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 743 gammaK(371,743) = -0.427316252324631723877558461104748781212769199725500728391066 gammaquad(371,743) = -0.365114619232345274661061806189276355637916164502137370821711 S(371,743) = 0.147001846139626610050544961863563344489894707294958437994283 accuracy = 5.932737837 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 751 gammaK(375,751) = -0.199188442264078407495335309118939763080795467054548516471068 gammaquad(375,751) = -0.329232994134186508584339943594299676411501193516628916288701 S(375,751) = 0.225224502567637881673835280099585172252252550160780480257573 accuracy = 1.499175666 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 757 gammaK(378,757) = 0.0932767827077118895671547987144195927022693499621212847922540 gammaquad(378,757) = -0.285909228409092914586612438696149510408081333736658414241239 S(378,757) = 0.328163120256707160444077188733324292505336725081843766147826 accuracy = 5.342789491 E-54 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 761 gammaK(380,761) = 0.0626685388033128824241998015873526415931494045730702895049773 gammaquad(380,761) = -0.202478643598974468321082123605113951899195275813763099081504 S(380,761) = 0.229448022633616642535579801538358187420006817398549011887466 accuracy = 2.685529109 E-54 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 769 gammaK(384,769) = -0.270836804289403797836548385205447235718360136635086870460552 gammaquad(384,769) = -0.241662879174485454488776872114151247685456399724135992416506 S(384,769) = 0.101918245929844985274583176356531094901047591780560176016214 accuracy = 6.784494591 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 773 gammaK(386,773) = 1.56189354577670957536665533909459049881278180818754046620677 gammaquad(386,773) = 0.250441857294396397505610950113649557077516933834578105362592 S(386,773) = 0.526197740044355137611903149769275975689364843841972082588280 accuracy = 3.409915250 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 787 gammaK(393,787) = 0.534756300357615892359044197495730758547257614984265384650697 gammaquad(393,787) = -0.210604961760080372015586592860866081243739656599960037018195 S(393,787) = 0.473741236462795822503545983308168855051490027715272175608067 accuracy = 3.068625192 E-56 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 797 gammaK(398,797) = 1.15485483544888632640649047803236209035385239209851715441457 gammaquad(398,797) = 0.0627947550528970874188777528412559647939573190782041334794565 S(398,797) = 0.510436145913512021111430869464271852635276130944319724425660 accuracy = 5.493629654 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 809 gammaK(404,809) = -0.128452300609337550849460178321694491639142782653487786554179 gammaquad(404,809) = -0.260050782242606967884750843025479675102882320130316616391088 S(404,809) = 0.191681192014015858493786067934752116672922316115155021437688 accuracy = 6.970560239 E-58 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 811 gammaK(405,811) = 0.135272267589875330951415543655637558188817086874252670880253 gammaquad(405,811) = -0.349598439855815334811934503968485849693945230944609113257399 S(405,811) = 0.413099840284015091077024756861904072935197795996578672310388 accuracy = 4.941130736 E-58 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 821 gammaK(410,821) = 0.469412476125122910556429338869634375181952777063835542410841 gammaquad(410,821) = -0.197661784205928183065553224834969974393572583066607015444365 S(410,821) = 0.428276239884677182111075852666225112412958532674810027636792 accuracy = 8.842604264 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 823 gammaK(411,823) = 0.782829346795293340608630582610909879003217457076392981545504 gammaquad(411,823) = 0.0813721120735224967339602925151244855144702171428114189086930 S(411,823) = 0.305959254632714763709095951974366112050320668960962695042243 accuracy = 6.267915842 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 827 gammaK(413,827) = 0.517880509152469865072081310342764325921001518185547912118559 gammaquad(413,827) = -0.129450543492344953229253107219205667843301043601242902399652 S(413,827) = 0.384324330335514697318269344807728665889865315695051201934396 accuracy = 3.149208324 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 829 gammaK(414,829) = 0.0135332376538144784067901700876519403476435964489737383598842 gammaquad(414,829) = -0.300488040614250743293545102960692073103445239183858359602234 S(414,829) = 0.303196555482742949299724343354854648359182492182632332626165 accuracy = 2.232218393 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 839 gammaK(419,839) = -0.805943427524659087382649436507201812648354032023258269948472 gammaquad(419,839) = -0.472075563008794932887783315423736823178574424424310101177445 S(419,839) = 0.0650870170827021396873859069503270713714093532405193805587893 accuracy = 3.993699419 E-60 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 853 gammaK(426,853) = 0.699393235794289026683553708328311062504610903330029865202617 gammaquad(426,853) = -0.0526680384616819367913228832811550681349014828499256392242071 S(426,853) = 0.398404116718279690087354549702623408002796890532530265067344 accuracy = 3.588938087 E-61 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 857 gammaK(428,857) = 0.460009389235176578256409415382910384958789481114584193338123 gammaquad(428,857) = -0.0688325057232667315914321140824098585555099220919885688316331 S(428,857) = 0.294892435201487158693116937481637978263479381943791658802359 accuracy = 1.802893781 E-61 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 859 gammaK(429,859) = 0.180500774711647036607102287927855989647195127354126511280811 gammaquad(429,859) = -0.331073065202650080115292710342705458225686948327094002848603 S(429,859) = 0.417386524282258997386607854051871431156025706057036748785695 accuracy = 1.277817013 E-61 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 863 gammaK(431,863) = -0.329009842019778460222232438176661046847129005092112537815245 gammaquad(431,863) = -0.327679732613475732334018657810270213116246373692743072040212 S(431,863) = 0.159253457374419780676827263602906294663736308448040617628300 accuracy = 6.418871008 E-62 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 877 gammaK(438,877) = 0.351041505109546761676973109982267173877038518038772954350743 gammaquad(438,877) = -0.189512361883271255733064858864218110900036211445091125873663 S(438,877) = 0.361165245150160970452720347868134111803150346819425239134348 accuracy = 5.765679585 E-63 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 881 gammaK(440,881) = -0.0533973278411965038708203240027511243344225788981122340306326 gammaquad(440,881) = -0.243563051252383001952280050907877417376366918846823428219450 S(440,881) = 0.213011513680684648023481108889067583372797798733036993654765 accuracy = 2.896003445 E-63 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 883 gammaK(441,883) = 2.06723795163503580968526245789306543223722082613246873707953 gammaquad(441,883) = 0.499447230050574537819652660755329005862262685727485265027110 S(441,883) = 0.530326323317621394226195916898146279669483920043856391703474 accuracy = 2.052437728 E-63 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 887 gammaK(443,887) = -0.706865494733554603128036666318499525005908770385308942158525 gammaquad(443,887) = -0.460668961956319480670729614467845446436935956475894170821835 S(443,887) = 0.103405602297042416414610238050800690278897923656069819526922 accuracy = 1.030872918 E-63 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 907 gammaK(453,907) = 2.11818195720839144439427926403072969810260695160099008185066 gammaquad(453,907) = 0.524068009392462516762904033332965022832787571260050416327104 S(453,907) = 0.531264612451184013048509346499929840076209424528269109423418 accuracy = 3.294197459 E-65 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 911 gammaK(455,911) = -0.724636598114703035657608626935587026957645014777211298549270 gammaquad(455,911) = -0.454567816318593207049159500714273692043168788824002166388104 S(455,911) = 0.0885052629220878659670896095615433742774823244698954604337529 accuracy = 1.654370688 E-65 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 919 gammaK(459,919) = -0.413262215376975263094987169365418814467631803687931277683524 gammaquad(459,919) = -0.415503218243844077323273903701668508451289128766379675002453 S(459,919) = 0.205155723778474263286906344054876557451628701015617642338109 accuracy = 4.172286516 E-66 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 929 gammaK(464,929) = -0.0159364016168983513067185256344304577540476888466692857450165 gammaquad(464,929) = -0.231806605239266654083994020534006569717662058075387952119216 S(464,929) = 0.220156233774128987850197906021127601387322916863852682692688 accuracy = 7.455974778 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 937 gammaK(468,937) = -0.154129716322502842320562762675560245501650758177941312550525 gammaquad(468,937) = -0.230587324976141827833896756401668805421458189372200942725548 S(468,937) = 0.149867187283780138410903654659420024154759116552759193209915 accuracy = 1.880062606 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 941 gammaK(470,941) = 1.17661769425385325343995238999682527635475405109551024517122 gammaquad(470,941) = 0.104180752527445082541393287075343181719297723530020276357838 S(470,941) = 0.480486103567787193309002304783983333962659644798530956134296 accuracy = 9.440485307 E-68 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 947 gammaK(473,947) = 1.70655512973599209910249137151351429556630632420438739820507 gammaquad(473,947) = 0.431968921018472391872441514743265024561734266042501838690383 S(473,947) = 0.417686392743188521186220064944093728926938701358090456496366 accuracy = 3.359020158 E-68 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 953 gammaK(476,953) = 0.119423771809965187550519714476098046719096011678467110310740 gammaquad(476,953) = -0.197093712723951592369590098383393474405080943768527844813261 S(476,953) = 0.253202859708947735455624106718819404973615801899685135221245 accuracy = 1.195125269 E-68 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 967 gammaK(483,967) = 0.500363462973915058269593468665224312156138506673760236114948 gammaquad(483,967) = -0.0464393500513833044769672520458626514630807600950353339571371 S(483,967) = 0.293063007782930225782699604532558914312056997523832769190649 accuracy = 1.071886069 E-69 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 971 gammaK(485,971) = -0.489293358004814204122927482141634916867301958562216956993493 gammaquad(485,971) = -0.521199424566931268145037443949829072628212622720888107647228 S(485,971) = 0.273007216457157503758182149607195543355819649141440460146213 accuracy = 5.381622668 E-70 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 977 gammaK(488,977) = 0.0793203162663381970257366072621105412244277622374673662291012 gammaquad(488,977) = -0.211735571515378313927621166962295737001145190551015807809046 S(488,977) = 0.247868840994836970462849621378022477332513852952607033747329 accuracy = 1.914460245 E-70 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 983 gammaK(491,983) = -0.566552888446574331053106654443063100703577075541646504773315 gammaquad(491,983) = -0.412651423334310852370371099423817194101700509492275468446033 S(491,983) = 0.125866522328871361715477987441870310533998117995835816126571 accuracy = 6.810250409 E-71 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 991 gammaK(495,991) = -0.184507786279667410555029749005364604213633159215055786228611 gammaquad(495,991) = -0.322725035462053392841318853456262838666716673686172206160995 S(495,991) = 0.226986943062457067366910822262282199806347605842850082647088 accuracy = 1.716433712 E-71 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 997 gammaK(498,997) = 0.544317998139059057925298697670273677760188439381638039690051 gammaquad(498,997) = -0.118131623124767390890293126909323197091258635605295149223064 S(498,997) = 0.386824381847930535149006369582460300774680278758333556239061 accuracy = 6.105296584 E-72 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1009 gammaK(504,1009) = -0.394271348372199578127504850937072707049868668726022215004302 gammaquad(504,1009) = -0.278111669162048370820620271696594068033267917872405981817930 S(504,1009) = 0.0775450847475985773141609410567380613757836685047145065149089 accuracy = 7.723678468 E-73 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1013 gammaK(506,1013) = 1.09181504034399163162086231728298849764161063641725215362134 gammaquad(506,1013) = 0.0342231705609255516996419889265315170720843577448476109940324 S(506,1013) = 0.508265045508180598408964658394464500445095118024688396914853 accuracy = 3.877226994 E-73 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1019 gammaK(509,1019) = -0.295691190457388407108142361405961752307449602266146064285742 gammaquad(509,1019) = -0.455400450081033283189120133031415214371958183368155046522435 S(509,1019) = 0.304152803264312201042961788297413377762982019430697826914691 accuracy = 1.379015575 E-73 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1021 gammaK(510,1021) = 0.0513291102205264106159373816631475406931725956981662066253935 gammaquad(510,1021) = -0.290332810743952993693992338282688681051093014268459116717439 S(510,1021) = 0.312601023786488421768786447384368782513589710557703631541827 accuracy = 9.770638804 E-74 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1031 gammaK(515,1031) = -0.800929601943145989736551690174363595969579598471065564965238 gammaquad(515,1031) = -0.481502228755597994922835349035971071284970904165985402117462 S(515,1031) = 0.0776693285199390971781981422471173303832841485426829172822866 accuracy = 1.745193998 E-74 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1033 gammaK(516,1033) = -0.260545717830917678957492954508481482607719573726697151552209 gammaquad(516,1033) = -0.259979029058182349277372562084809992770528060514220351840823 S(516,1033) = 0.126343659256522134533797129215434018766824548983335796468000 accuracy = 1.236803487 E-74 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1039 gammaK(519,1039) = -0.568044264936471919856850368372869660342858531218421325749615 gammaquad(519,1039) = -0.468198102811742781875605454945782916755952435506707639152047 S(519,1039) = 0.180830106185944573684758789098867269901158490166674427320150 accuracy = 4.406335495 E-75 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1049 gammaK(524,1049) = -0.0824618422012396370257257870557160464053293311567979426542746 gammaquad(524,1049) = -0.256745169933943997964889065316635706331580576936414511606501 S(524,1049) = 0.212195740909470984234904085779732137453709685824504563345193 accuracy = 7.968342021 E-76 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1051 gammaK(525,1051) = 1.16995541512687228003574687451774924759780038215583153404199 gammaquad(525,1051) = 0.115102683353833285455337103785949272303259697134917273406411 S(525,1051) = 0.466561930223470973074148341061244071853450532540894382807815 accuracy = 5.682102938 E-76 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1061 gammaK(530,1061) = 0.266309216792092091125369663583491854453513616784875111134663 gammaquad(530,1061) = -0.280252790301778448046559868243812584579773365295148349067689 S(530,1061) = 0.410121093443761294017234383515728407773237675180500729174181 accuracy = 1.117957768 E-76 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1063 gammaK(531,1063) = -0.403536917827837553730535019408645035196482281468601789555552 gammaquad(531,1063) = -0.431498569511699290568319780042937789080584378619702445682290 S(531,1063) = 0.226449107594794662512642322718747396844947107243028832808989 accuracy = 8.288904477 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1069 gammaK(534,1069) = 0.0576646551858969992823671675991549004060734369775168245121679 gammaquad(534,1069) = -0.289624158651794063865152847948049516959232266249906998776261 S(534,1069) = 0.315191280762052935591795406222500023143642859212467016051488 accuracy = 3.762381185 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1087 gammaK(543,1087) = 1.21946512978904539946636387048090808602697305745390192014684 gammaquad(543,1087) = 0.290478219701542594324209423656483024255142627141187211904015 S(543,1087) = 0.316035571303881942681927348595321865049792378396722370258699 accuracy = 1.377268179 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1091 gammaK(545,1091) = -0.581549411076346170832567253381613909744086906438242091649937 gammaquad(545,1091) = -0.555748467860047501876884459346521482064344187421915559798270 S(545,1091) = 0.261765115539382182140182531822177653760787794607135192026628 accuracy = 1.321360831 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1093 gammaK(546,1093) = 0.0841307094445901305685413327543693647041344321435904786176155 gammaquad(546,1093) = -0.294254890556056134958532297465885245441044713708790977535110 S(546,1093) = 0.333116636538343627641765366356546033958176320136795084565893 accuracy = 1.304937950 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1097 gammaK(548,1097) = 0.580880895493134713895578299536942684922742792310249617834741 gammaquad(548,1097) = -0.0159977351212903686123661840136145510855614050578944032856497 S(548,1097) = 0.303244599628681069426072602317867531418181670774717877113371 accuracy = 1.285062108 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1103 gammaK(551,1103) = -0.281338182184197921919180130755643382294191548354774101013427 gammaquad(551,1103) = -0.307159497915383641567701626105471589044025472963260731948965 S(551,1103) = 0.163311736669358409069746562844263287063267695069747760539332 accuracy = 1.272157715 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1109 gammaK(554,1109) = 0.354797617179974895817304737860636232297492387135764633513120 gammaquad(554,1109) = -0.256933949651085468383949849808483759646074163470619102491042 S(554,1109) = 0.431168853012124194706457646995457304400420806434430734516010 accuracy = 1.267570271 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1117 gammaK(558,1117) = 0.236335613599619635723809308055355206132531918872270151737813 gammaquad(558,1117) = -0.235865258258111820795468556244898051157400598993160338613900 S(558,1117) = 0.350888619807442606081845395826453167728115167231633077021938 accuracy = 1.265677225 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1123 gammaK(561,1123) = 0.964698861398495081173018501751036648218684002802828210011939 gammaquad(561,1123) = -0.0119966953946425851838792850731353778199963804783059054411007 S(561,1123) = 0.491216108734381015618634806239669854182439829698028612634653 accuracy = 1.265266582 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1129 gammaK(564,1129) = -0.420810165108440038924776986061112257516884249163866326296006 gammaquad(564,1129) = -0.289673390763526204168665924930625220731135349002063309436524 S(564,1129) = 0.0761525779060483557979226520892029552181097200738527810307187 accuracy = 1.265120615 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1151 gammaK(575,1151) = -0.899842323221107574786112551614980368533261397746728857129290 gammaquad(575,1151) = -0.508380743015418639119564105264738330993192080165968209158133 S(575,1151) = 0.0553950655749857723161124328248908369100053484067372871597942 accuracy = 1.265041934 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1153 gammaK(576,1153) = -0.215375189386090066352357636644289258879125490430729579418479 gammaquad(576,1153) = -0.253697880378588113959832401368514765644502705185689067871067 S(576,1153) = 0.142950336675009635025852548904075702662417522003451914931628 accuracy = 1.265041405 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1163 gammaK(581,1163) = 1.00459226995588611239350898646814558619784563176536472417264 gammaquad(581,1163) = 0.102100586866482229163350998317387640558669558313105223437250 S(581,1163) = 0.397158216720531969707759059318239257638095637902140378174026 accuracy = 1.265040349 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1171 gammaK(585,1171) = 0.368598851851211400357667668091486973840491007132406946993901 gammaquad(585,1171) = -0.265250326167597612221647886012254647297069536546286964957777 S(585,1171) = 0.446530259202776937468074355451186216424427208336177240859635 accuracy = 1.265040178 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1181 gammaK(590,1181) = 0.619499380368998285729524312054427859661530795178687685410572 gammaquad(590,1181) = -0.143546249456019601840108265890532204632249669641562527193297 S(590,1181) = 0.450298432515011387795955671545386125818037658250646992837297 accuracy = 1.265040130 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1187 gammaK(593,1187) = 0.369585558957146569070566082782503279451149699877632020214185 gammaquad(593,1187) = -0.194017523979289595011257778197479854453997458661771630338619 S(593,1187) = 0.375825824370759309547761194530218658520937811168999153140490 accuracy = 1.265040124 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1193 gammaK(596,1193) = 0.325699518466995943325386712661374658540586159556971994846282 gammaquad(596,1193) = -0.122327204934247223352285701358988310617954582534596693996263 S(596,1193) = 0.282205392681965867786320571166112637043709722053560547623967 accuracy = 1.265040122 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1201 gammaK(600,1201) = -0.438769943841476280051081306392498235004804309689059427368835 gammaquad(600,1201) = -0.296909475270553794966070916080116251364382406587031990715925 S(600,1201) = 0.0745699575906156617984499138379430814719574258921770255767956 accuracy = 1.265040121 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1213 gammaK(606,1213) = 0.0497926096555254341113928107277882441646620818241855342549496 gammaquad(606,1213) = -0.308711438690490650297946236043716362583802171807792485713873 S(606,1213) = 0.330678349166378759213897426406649765837389531888018255357780 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1217 gammaK(608,1217) = 0.655602248160282654907479385900577448306397974368079942401870 gammaquad(608,1217) = 0.0176926713702802402844981993442805444397702903872694759246048 S(608,1217) = 0.307187340829520821062010353791247200673072986605055260546966 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1223 gammaK(611,1223) = -0.771697249804006877676413479229964858539506413478030481579486 gammaquad(611,1223) = -0.489242956357854308196043970138103589864781915706206365338229 S(611,1223) = 0.100485549894604072158466717807275612076238360644790242467652 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1229 gammaK(614,1229) = 0.661280156585077299765881615152726550905525727506388500277814 gammaquad(614,1229) = -0.112645584766935149970340758156436564295354446265002320594034 S(614,1229) = 0.440389101125611407825157454114987681339489644949651773904430 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1231 gammaK(615,1231) = -0.678083131152736991552928901801244066258409271143650839532172 gammaquad(615,1231) = -0.510573144549159072246522221511409950743925435648419516241711 S(615,1231) = 0.168639065913366001872354405479213860688691404033218922934675 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1237 gammaK(618,1237) = 0.461513431882506290454884499831286542611429732810395067748401 gammaquad(618,1237) = -0.151844394808228518253701461520614852125720308172598699185798 S(618,1237) = 0.379720672087510592324415060508059184361058541891669495103307 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1249 gammaK(624,1249) = -0.385163348053471511567096246482734205544513363688398323319033 gammaquad(624,1249) = -0.290059317165068675478916772124067428642372568263554373022815 S(624,1249) = 0.0946210331583146594086803948199083129484664606416592689119089 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1259 gammaK(629,1259) = -0.305878450023309671879399062090536403346367866953445423671617 gammaquad(629,1259) = -0.448101091092045871756608740588910899671540810083192904386003 S(629,1259) = 0.292324794127273250774591982909587605024259950675890080583113 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1277 gammaK(638,1277) = 0.769988042075302997486101427171720157321493992090978641713754 gammaquad(638,1277) = -0.113353615502843639456077891240771164315318671263106085627773 S(638,1277) = 0.495545023352394613398535740455866838306339224711128111601711 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1279 gammaK(639,1279) = -0.428436355240644342146370213208384267254433485512305856168737 gammaquad(639,1279) = -0.414019274751189128688934677819114396972917236751543585306420 S(639,1279) = 0.197002257615382277377081914262478396089194628921392311982596 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1283 gammaK(641,1283) = 0.00827725053578276506212793452448818828612495359307174766886581 gammaquad(641,1283) = -0.358592224096535499357634659545681884246973451883348745606326 S(641,1283) = 0.359939524729241376261630201995321035733273368939907261199244 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1289 gammaK(644,1289) = -0.156185960677019092736260139428066703819880676161294546551178 gammaquad(644,1289) = -0.279503781878122134043919438398563282955549819021759857452068 S(644,1289) = 0.198630668774496443503579412146773256322761733088614940420101 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1291 gammaK(645,1291) = 0.0734357169931121161487573496451957054455405702456222234263237 gammaquad(645,1291) = -0.378362963669741872045608881892526890597103708227667946855219 S(645,1291) = 0.412304398758993029926318804393402846658677113557059070665388 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1297 gammaK(648,1297) = -0.323666958593176423119327337479390154547143155268704060070623 gammaquad(648,1297) = -0.285222096275260185135230867079912319816670822285878285577574 S(648,1297) = 0.120623258497068407263059314266594686108346074234743203871953 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1301 gammaK(650,1301) = 0.284046962192771473954012287873928580851428444539330938308858 gammaquad(650,1301) = -0.288173293848080739579882152742208143201410931907974153350463 S(650,1301) = 0.427438740914269359143528649567673032348486927579338993455755 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1303 gammaK(651,1303) = 0.912326375802910907082831274196142447937110438857558195112888 gammaquad(651,1303) = 0.147542257815619145428653885438882030002541478430607802110386 S(651,1303) = 0.305866542767431989711148153273037633759372440497380201513979 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1307 gammaK(653,1307) = 0.106090361561593130529602801899261232324314351807311873856940 gammaquad(653,1307) = -0.302822185948220100170089803209245477934712527571395533116710 S(653,1307) = 0.353120242030079367598900257105854702116201205462920880843233 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1319 gammaK(659,1319) = -0.943012222614763954362675708872102707084595107754047658018247 gammaquad(659,1319) = -0.525982035459661107953406545998858572003917653459013505495731 S(659,1319) = 0.0517503440488203619562211184916231477368789626176472930898151 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1321 gammaK(660,1321) = -0.395503986974259885277417626227239040284934701982716966605058 gammaquad(660,1321) = -0.294162264458328802083891962643242689493237110775941961370739 S(660,1321) = 0.0936882466134252513698704212318335316340118735554404315236721 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1327 gammaK(663,1327) = 0.159094492595537796576853611574294117409406289308830243336579 gammaquad(663,1327) = -0.200055537264579415045176225788104405703235525412301821776682 S(663,1327) = 0.276891367259809773548767756288114600080297608192716366492650 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1361 gammaK(680,1361) = -0.0349589294541963324978582954962081846815711419936764479303649 gammaquad(680,1361) = -0.243980923887264600263575068493298265824451841334267774201616 S(680,1361) = 0.223848527173897512664719875973675326800254439638301291356296 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1367 gammaK(683,1367) = -0.240185272901244703106666680900182834280697292239042561924343 gammaquad(683,1367) = -0.288731227094966429604168913702664157489535587403646664878427 S(683,1367) = 0.165995701245836043804697734240222455888025986213357185350675 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1373 gammaK(686,1373) = 0.519049629255462197665177666199676029671198465748801154089248 gammaquad(686,1373) = -0.210133831793990125774299235652543790371544935114991902389373 S(686,1373) = 0.467025718795712488801710357348075796590800856800289256541990 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1381 gammaK(690,1381) = -0.149832506733227208652622762797701439175469367266201548242285 gammaquad(690,1381) = -0.359224091514569817866906964801322814644988534030705290740258 S(690,1381) = 0.281688068889474585961481201834301331947424885106497278681765 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1399 gammaK(699,1399) = -0.602470345682528170794109557844919428547987612568878297622287 gammaquad(699,1399) = -0.483344975107914757431889908101882843051347995481428594412862 S(699,1399) = 0.179519132390160871900574553224801364955991497301807917370578 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1409 gammaK(704,1409) = -0.262614293574521714066287839967100438945602200801625359654112 gammaquad(704,1409) = -0.316760792723060091787142951173437046731031111846808294352179 S(704,1409) = 0.182878846393221578426952901765315554081700603807828742415069 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1423 gammaK(711,1423) = 1.74386163738966462299128190642961378499873612847795104385248 gammaquad(711,1423) = 0.546156928068310428373096673655870078183750363108996962998555 S(711,1423) = 0.323220964255885507465320593434665473433513919994261936405459 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1427 gammaK(713,1427) = -0.374022848326005947683700593676789918059527711559086953244278 gammaquad(713,1427) = -0.508831507765813570418310167983162867043321120047624974589369 S(713,1427) = 0.319273334087566264031963935806200956457273889681496313397547 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1429 gammaK(714,1429) = -0.189010624942608084782604788192990920060663159511152211504459 gammaquad(714,1429) = -0.374186200122611611624478905101297992705919986405235974036800 S(714,1429) = 0.277137214619819520421393425708398843887061048428186173889112 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1433 gammaK(716,1433) = 0.331462695131537679421697153457391274186922230530957274182836 gammaquad(716,1433) = -0.119634280272389382957523399927717146803984047934898556814172 S(716,1433) = 0.282828084043525481100607786571856378316203037165161103069458 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1439 gammaK(719,1439) = -0.764233504017741451883960236713692884842219234217145332238332 gammaquad(719,1439) = -0.474946760342073231913203316221180598860673151176569947222926 S(719,1439) = 0.0903015995338675380237498666523034610382767347998454492571219 accuracy = 6.187747929 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1447 gammaK(723,1447) = -0.490008241208837798649724819217627686453858454075134309007885 gammaquad(723,1447) = -0.470625189984342873141092710951690296890691636346350040849175 S(723,1447) = 0.223104731991738813421599285015173787191019531496020074835411 accuracy = 3.111086059 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1451 gammaK(725,1451) = 0.0308205580757702367500083838843272347404094612861746263148474 gammaquad(725,1451) = -0.311806456292051254870303810748467565456302799495672435246582 S(725,1451) = 0.324706387656528032608566607300052225501158424485675677519275 accuracy = 2.205955443 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1453 gammaK(726,1453) = -0.0522666672574224526029329659544854970316099060802009275428446 gammaquad(726,1453) = -0.350724922265347281638408359234760408728324788433845825384885 S(726,1453) = 0.322084224427417638359072476883430929282000007162911017820885 accuracy = 1.857538618 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1459 gammaK(729,1459) = -0.181632549952581827262646881380241417160578356072703020112447 gammaquad(729,1459) = -0.488031738145382225567198248340957110542801763051352822629978 S(729,1459) = 0.394717004133246735239717448485078406776328718636138015380211 accuracy = 1.109063116 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1471 gammaK(735,1471) = -0.375425838132323429519429124485069361620045268825583440282568 gammaquad(735,1471) = -0.403204503115614120009908455461969857673867366703869515277991 S(735,1471) = 0.213010734484621984325689328998283510590701315875732878478074 accuracy = 3.953402928 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1481 gammaK(740,1481) = -0.245103821264548979984092802773883850635074862542013075632280 gammaquad(740,1481) = -0.312726822566159113008373216664452294924316967848693405827148 S(740,1481) = 0.187708535983118474778995117078578285573149400696534965087433 accuracy = 1.673508666 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1483 gammaK(741,1483) = 0.436435728521238036775291311281957041627438606044942630797853 gammaquad(741,1483) = -0.259502363099447814100565830357693686370052899383556701311446 S(741,1483) = 0.475256724545580350674698248896986012541492604157813983116258 accuracy = 1.409149124 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1487 gammaK(743,1487) = -0.736960596744798974128155156555296426841509668438907706661394 gammaquad(743,1487) = -0.479794979654427398215623793241393007604680210888540986744398 S(743,1487) = 0.108856903372720994908838046281051657863807539483340392531767 accuracy = 9.991082909 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1489 gammaK(744,1489) = -0.428269264438539599446244515156087832515968283138127526252112 gammaquad(744,1489) = -0.307661938511976001385252569019328445132159927292454625483687 S(744,1489) = 0.0910723802064548545569797613377258305051224249566154527259113 accuracy = 8.412773293 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1493 gammaK(746,1493) = 1.37269167523265905312693183884506292680926147304965951770150 gammaquad(746,1493) = 0.179084704071817614921729568791402931208687292481503129903394 S(746,1493) = 0.504811889979652933630502049775765147076191654078190218852714 accuracy = 5.964720251 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1499 gammaK(749,1499) = 0.0495127311450578991777445778471594698592492955845406899036153 gammaquad(749,1499) = -0.305642656236715957672186311516836898586173150764275444025376 S(749,1499) = 0.327958249613616536865872954601197176149955561582707914199948 accuracy = 3.560906524 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1511 gammaK(755,1511) = -0.981684153417105545347443188266429166340996274315305441141192 gammaquad(755,1511) = -0.543410334483460302998343852324759853337580947127774452923894 S(755,1511) = 0.0501442422244860933811633014620635918796315360986732191828492 accuracy = 1.269055787 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1523 gammaK(761,1523) = 1.42865941375953946291327879744673505208236556114941948685814 gammaquad(761,1523) = 0.303288833616489836443740471685400866345704374191665801473532 S(761,1523) = 0.408633370847742719647993563058437727433447390394330991864133 accuracy = 4.522446370 E-54 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1531 gammaK(765,1531) = -0.131857615116751413914370061494981251299951410047414408844329 gammaquad(765,1531) = -0.465148848853444402844149285216227067306677185283798437607736 S(765,1531) = 0.396823415021977949562066721224211106893313697581222049964020 accuracy = 2.273108721 E-54 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1543 gammaK(771,1543) = -0.104530385672068162023748813232276983920143525421573090915928 gammaquad(771,1543) = -0.306680229886003016539006016238853032388044553461870452073883 S(771,1543) = 0.252034529964248066253653293198212728241488403308252205382862 accuracy = 8.099685526 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1549 gammaK(774,1549) = -0.189179369130479405459057342738354099233269825859582502955092 gammaquad(774,1549) = -0.374083488003901933507281171734270855407466345984653991552543 S(774,1549) = 0.277121269575478487679850808995799856301641968462362000711145 accuracy = 4.834841524 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1553 gammaK(776,1553) = 0.790328573904055184086189918029143877889030989846310205700581 gammaquad(776,1553) = 0.0806519047710146593286928912876850055219856730272417385051470 S(776,1553) = 0.312145132237988226828619062263974413207519969534418274286818 accuracy = 3.427583205 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1559 gammaK(779,1559) = -1.00555063023347635409498949738768242748875748521973047515789 gammaquad(779,1559) = -0.549992970638271870789044583827935121375816483091206289215551 S(779,1559) = 0.0448582845751095035876992210524016222021336588858827557510014 accuracy = 2.045932239 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1567 gammaK(783,1567) = 0.446931122945202542205140305945297130096320774828438374266450 gammaquad(783,1567) = -0.0558780666743083682106338508311806920594760984101665000313268 S(783,1567) = 0.276994675962249351692517931006982014898955971774756118929601 accuracy = 1.028218834 E-55 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1571 gammaK(785,1571) = -0.344738722893788868558425321390294820174013452659232716340554 gammaquad(785,1571) = -0.465909028339001838281477331951090602306622453994192171303038 S(785,1571) = 0.291195887389478225289830596217406534834297223601389793901592 accuracy = 7.289176249 E-56 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1579 gammaK(789,1579) = 0.135523706944094187848770585182677107141960056947031627517579 gammaquad(789,1579) = -0.371064467840387220575870452310458268328385307049630836135296 S(789,1579) = 0.436492814653924922202851961631155397663122312222517606581850 accuracy = 3.663159274 E-56 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1583 gammaK(791,1583) = -0.573831119508374764485627346143134412925756148737392494109257 gammaquad(791,1583) = -0.425826847318536382229848497187041070887663165284682730118892 S(791,1583) = 0.136582881413944128890865407542211812467212175742752817078422 accuracy = 2.596810656 E-56 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1597 gammaK(798,1597) = 0.260007934755187632958188200247136021818096920113990635986948 gammaquad(798,1597) = -0.227700920604866064915522429689195765195191704334134766033324 S(798,1597) = 0.355394147961089263464225253160992653200982094699808332833234 accuracy = 7.788686079 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1601 gammaK(800,1601) = 0.0830741835978462579974681302931467234649075873892998596114502 gammaquad(800,1601) = -0.198809545625379069333056619916108416601995315116753696956719 S(800,1601) = 0.238040892513990724992375326932015616034914993706271096874176 accuracy = 5.521235833 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1607 gammaK(803,1607) = -0.230779065700588037442988101689337912501916117643466662845882 gammaquad(803,1607) = -0.283610213359606575179849940909661066452328744784923658492190 S(803,1607) = 0.165922385252233629750260139626866371680645502191047860910937 accuracy = 3.295257517 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1609 gammaK(804,1609) = -0.466142362610458367145469601635477497643543127027495260862601 gammaquad(804,1609) = -0.320853895679782398160072992321055305705691126726499176001532 S(804,1609) = 0.0854868909457620506540860171117211121217058602386091628633885 accuracy = 2.774421006 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1613 gammaK(806,1613) = 1.24297808582799898999888033329645918183241323651919569792816 gammaquad(806,1613) = 0.101308105855033655129052695441307693025002989456280964293209 S(806,1613) = 0.517890040322574646054784581523408967634672172031211205062768 accuracy = 1.966692036 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1619 gammaK(809,1619) = -0.151497136773235837531252592144001701192472532798505490092092 gammaquad(809,1619) = -0.393091650787093778648513644887785908574762839899388280112514 S(809,1619) = 0.315059533589079804527441732469427805966669093628945012957034 accuracy = 1.173754695 E-57 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1621 gammaK(810,1621) = -0.248427100737431674986661460575073678505139589792456010697365 gammaquad(810,1621) = -0.395390859066514609225286074118402765455920468967655309628608 S(810,1621) = 0.268896198042942081576841305116154629411332398608587666093424 accuracy = 9.882261473 E-58 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1627 gammaK(813,1627) = 0.587278700039891248626957758196839457493027773081250533409627 gammaquad(813,1627) = -0.185011066798477903505174031344354708029344002757524872790976 S(813,1627) = 0.476376587449659986060184456315257735418287273280540624111881 accuracy = 5.897790894 E-58 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1637 gammaK(818,1637) = 1.09911727349816665462478132739322724780907727018148659235916 gammaquad(818,1637) = 0.0377974564580173621279715455409157352350295335215317001277805 S(818,1637) = 0.509499376936123686790989928308326461163979879671289960793132 accuracy = 2.494966014 E-58 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1657 gammaK(828,1657) = -0.165831845486917247903081537788913429165726903827700001445599 gammaquad(828,1657) = -0.243166822201167928253204419086609525038559225983442491970327 S(828,1657) = 0.158012746070805148833093443363382723419263087266335493371708 accuracy = 4.464436787 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1663 gammaK(831,1663) = 0.125895660900773971514392691434798566961045489808679124435043 gammaquad(831,1663) = -0.215241268345763539299181242138485564641301247471059639357143 S(831,1663) = 0.275957938002169499883173676289400674492316054094581223632729 accuracy = 2.664188003 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1667 gammaK(833,1667) = -0.0803484350015012930272770812202631631237260667931089545983149 gammaquad(833,1667) = -0.399257118514303967674280871936575201110248629206458187046139 S(833,1667) = 0.356856376138778172900741327586292057110470981588977401522410 accuracy = 1.888399375 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1669 gammaK(834,1669) = 0.170789289437268611969019609349306876489023506687635785924029 gammaquad(834,1669) = -0.247824017512626665782036937414224340776606229309895959344114 S(834,1669) = 0.330994447625846752618968583658088445222339496281569788720420 accuracy = 1.589854566 E-59 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1693 gammaK(846,1693) = 0.766781783162599354188746278579459648841035935983623308063723 gammaquad(846,1693) = -0.0159229678240912755020620538338991741754481821922690096241936 S(846,1693) = 0.397116974836202673838878935441852864777258346961897649601641 accuracy = 2.015912714 E-60 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1697 gammaK(848,1697) = 0.424689281541624607676921744115569303600779595086230488710151 gammaquad(848,1697) = -0.0797949773546477441852759826781071464961706424245018208499095 S(848,1697) = 0.289947219167549014322275765729916616062613749921744322160199 accuracy = 1.428835445 E-60 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1699 gammaK(849,1699) = -0.0728579989723572906749921829739320521198426684879941494399065 gammaquad(849,1699) = -0.445170236487532071839510585220657150464401589126177236472174 S(849,1699) = 0.406551073537963576082810341970040345850919568931221587011171 accuracy = 1.202919470 E-60 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1709 gammaK(854,1709) = 0.281232701546478001670922332766353796631996064654165313164970 gammaquad(854,1709) = -0.274918995569015321386014690994980087618288388865769324240002 S(854,1709) = 0.413356287887009711305276690753381633811026339170430555028742 accuracy = 5.087439295 E-61 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1721 gammaK(860,1721) = -0.111005116362487984116479925578323894954759357451564195668162 gammaquad(860,1721) = -0.274442748302399238507152835060239078971172925745721750194676 S(860,1721) = 0.216774300354814682664462197452953538337789753413326735674054 accuracy = 1.811318518 E-61 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1723 gammaK(861,1723) = 1.43537157706633585133684392754814480484015767208256033463198 gammaquad(861,1723) = 0.195648730702574661446290925089203339970395253607768180680951 S(861,1723) = 0.519873346379801182450473367911444013778161858765548875601268 accuracy = 1.524902332 E-61 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1733 gammaK(866,1733) = 0.507429346995090076741782081286072046892134122290747838135928 gammaquad(866,1733) = -0.218835783863776944662041116325509246080660992370759320514351 S(866,1733) = 0.470397567843505699522558247178626509223097646751304554500532 accuracy = 6.448656952 E-62 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1741 gammaK(870,1741) = -0.0620254389765016292578602820243411165382114829682787769545565 gammaquad(870,1741) = -0.338885462235077247267565837661041690259458128185647115441605 S(870,1741) = 0.305728428108962010500125139346885235382784158140076934313225 accuracy = 3.239221448 E-62 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1747 gammaK(873,1747) = 1.35341288092384300755010561728699479497519245739354328512169 gammaquad(873,1747) = 0.148171177704865377863714932905408002418909341849287158537526 S(873,1747) = 0.526397331683134574775945534063041679894586820489467834916477 accuracy = 1.932694157 E-62 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1753 gammaK(876,1753) = -0.249828306298865664956038308880629077180280131471691822758658 gammaquad(876,1753) = -0.273104951531075479557228398101919085491064481400973753386676 S(876,1753) = 0.146059210514941381525964899694074563784385471795354827405984 accuracy = 1.153135917 E-62 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1759 gammaK(879,1759) = -0.499952387054758954092330079907332564317872253353361059852548 gammaquad(879,1759) = -0.455601844740903070398237423858754978723048286207027581306311 S(879,1759) = 0.203500366587602786136599385989515401410840854205031847860642 accuracy = 6.880068649 E-63 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1777 gammaK(888,1777) = -0.210594968360309460256724202392810383133922072417360501484803 gammaquad(888,1777) = -0.259809714285249389255365611645542206019132404625477582296952 S(888,1777) = 0.152405619230051119900320206886732436554296801362674772404058 accuracy = 1.461165374 E-63 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1783 gammaK(891,1783) = 0.302303508251886190263917907740179389133635556282365567296326 gammaquad(891,1783) = -0.121837161652944737517124829081880850940992854456996441245171 S(891,1783) = 0.270888452081395369010410423409557353451919870037960359873876 accuracy = 8.717493126 E-64 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1787 gammaK(893,1787) = 1.76210222654676657219596383923895516654265907724091527129235 gammaquad(893,1787) = 0.466913885323487393880517740613116385725637260239870917850009 S(893,1787) = 0.412040841187533230391941206969842305391500499838816503595103 accuracy = 6.178035089 E-64 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1789 gammaK(894,1789) = -0.106210617427459759121725709925021262581576984606176391897779 gammaquad(894,1789) = -0.347323174485179459097327367056169012086841184265755674001308 S(894,1789) = 0.292123511161967275520835209094409881588125712556535698272419 accuracy = 5.200905127 E-64 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1801 gammaK(900,1801) = -0.526763228291854439920998572132547776328008237518741383855262 gammaquad(900,1801) = -0.336450508009198055415986090469851350038983850210909580923885 S(900,1801) = 0.0709866446007219587670301302280190645854400575399734812407342 accuracy = 1.851138566 E-64 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1811 gammaK(905,1811) = -0.697280327637450618219247671284030028286552625170937817256424 gammaquad(905,1811) = -0.607705693040976617147418151522693634450265187419209397632742 S(905,1811) = 0.256993254510128818153268853402997079021963562373670485494575 accuracy = 7.826318247 E-65 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1823 gammaK(911,1823) = -0.877763355159154480894190448113657033517016195589243642043338 gammaquad(911,1823) = -0.535236053303077609184900759014956390408929683478973138866156 S(911,1823) = 0.0942939369818212625254489178830852013893230978812730720785703 accuracy = 2.785366245 E-65 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1831 gammaK(915,1831) = 0.225984449000939008755119207925555119341084280883444047396966 gammaquad(915,1831) = -0.136782828899429897607393963526353075706981763721049934208054 S(915,1831) = 0.247722425655452814358889931349287858988839873314178636717883 accuracy = 1.398798087 E-65 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1847 gammaK(923,1847) = -0.808706103432190124720882580101701308790737706280650788106772 gammaquad(923,1847) = -0.509061789813623723959201163691612903503192314386189825486984 S(923,1847) = 0.102671544711775888044748353724302900397269400946303540581426 accuracy = 3.527570039 E-66 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1861 gammaK(930,1861) = 0.176235961144085463462374169838144766568688454119585517968715 gammaquad(930,1861) = -0.245414579984361046475613730027301385008826598903212548419541 S(930,1861) = 0.331508670971284893594653506856948427148562372584282876177258 accuracy = 1.056706552 E-66 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1867 gammaK(933,1867) = 2.00017850099237549115161543140442437818037055671680990174523 gammaquad(933,1867) = 0.498807426581753620402878040380430001123674157092172242847853 S(933,1867) = 0.499263579502981359199178678133974323558093592875652241029079 accuracy = 6.303483188 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1871 gammaK(935,1871) = -0.798973629197896223028331257196636495455845900551439187227750 gammaquad(935,1871) = -0.490670449731194519003441165663317679044292960490691776690114 S(935,1871) = 0.0891691355797667043834761577878083455040322261510679453866142 accuracy = 4.466790339 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1873 gammaK(936,1873) = -0.445688025715150034698021005552629355383860902657767052976088 gammaquad(936,1873) = -0.332536813379934865200512596319393796849579443018172777947012 S(936,1873) = 0.107680167856108755834038308688196249865873668800874966642318 accuracy = 3.760125211 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1877 gammaK(938,1877) = 1.91701380531326069459999675068402740373227313929792909946105 gammaquad(938,1877) = 0.441150475289559851393087866447266100765552202077018873547543 S(938,1877) = 0.515347517442607140678017223086877093776475040869722983215935 accuracy = 2.664491253 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1879 gammaK(939,1879) = -0.385211401722598163047071293469781356487787384470263469992651 gammaquad(939,1879) = -0.395649052553943179150753148377516123418475945748986900592343 S(939,1879) = 0.201036297645941897064064938088306420966775526507528914417756 accuracy = 2.242949801 E-67 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1889 gammaK(944,1889) = -0.0679635510044713796706857908316083278577686603301016733067839 gammaquad(944,1889) = -0.259591792977892391047818983757985634616835054896503456044927 S(944,1889) = 0.223612188326424309911574209047205481071073167724526655239554 accuracy = 9.480657585 E-68 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1901 gammaK(950,1901) = 0.0963560216594330497954324874340170141944213147077105051465653 gammaquad(950,1901) = -0.352749459068082677358542992363356770299334463291554963939649 S(950,1901) = 0.398940592176091720897985279278501596989117832578118970005715 accuracy = 3.373223203 E-68 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1907 gammaK(953,1907) = 0.169170173355024991341605846645619780357370254921818538035546 gammaquad(953,1907) = -0.270960374813194504522684508454611031489310890886693895192968 S(953,1907) = 0.353564011699101433806754445631861645197877364048514561573348 accuracy = 2.012064403 E-68 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1913 gammaK(956,1913) = 0.177515860879637759807747870572972788451377364601266067397596 gammaquad(956,1913) = -0.176651233704799304893130166544097383073032548145801202428667 S(956,1913) = 0.263433110805329415739618689654175525388547514455618437630084 accuracy = 1.200146803 E-68 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1931 gammaK(965,1931) = -0.517849980150033880224516854502652336150419251496182725525680 gammaquad(965,1931) = -0.535994824744681896560045989766372261150346682723457303563425 S(965,1931) = 0.275109784596496947525053282054249274783125772419343654546073 accuracy = 2.546749944 E-69 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1933 gammaK(966,1933) = 0.239650547589485489560231589393104781495927503193316603815711 gammaquad(966,1933) = -0.235271830793345937548743262726243972863299523156208684586590 S(966,1933) = 0.353138815644194186754998717378171845309770228219240319475440 accuracy = 2.143772126 E-69 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1949 gammaK(974,1949) = 0.802547930586790063230509136182162288742911121297388486936231 gammaquad(974,1949) = -0.0616935852833978249543820051565907820497696780864168069299278 S(974,1949) = 0.461023230325379211597593735426219899440307072566300197918664 accuracy = 5.403814926 E-70 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1951 gammaK(975,1951) = -0.687826801187200353297118288923815749348494523269663130950281 gammaquad(975,1951) = -0.522673455807392134519427202718575287783947826499082501161986 S(975,1951) = 0.176817466152093724227013409951130361868363687259540655009441 accuracy = 4.548713968 E-70 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1973 gammaK(986,1973) = 0.518344151239788061962357156518302595899683326216010636443980 gammaquad(986,1973) = -0.230849824738668971009563968371484322365062101265738969526212 S(986,1973) = 0.488098140088273292217386521715312093371059446425988487350390 accuracy = 6.837990732 E-71 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1979 gammaK(989,1979) = -0.635811892844170793313070493362015600255781856428142136842287 gammaquad(989,1979) = -0.583213764748620194976482936239344504241388737044271536893263 S(989,1979) = 0.263389125974259124475872335512687885832876081977090697101304 accuracy = 4.078264999 E-71 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1987 gammaK(993,1987) = 0.895890549615990408485467168890955525943243153947557521530449 gammaquad(993,1987) = -0.0360158338239254744062115487331111384657239295257943007131895 S(993,1987) = 0.482049129467129183974144783792709080768452634064696618753180 accuracy = 2.047380379 E-71 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1993 gammaK(996,1993) = -0.233171372755777972780356047421816241131521751619212832930780 gammaquad(996,1993) = -0.269434984674828609505967282084763468369893417319999587335729 S(996,1993) = 0.150942321308934403557868831865202501209557627413915978099815 accuracy = 1.221058052 E-71 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1997 gammaK(998,1997) = 1.34740145739604082410346398251339958302413051574410650825146 gammaquad(998,1997) = 0.169246641629922989233553074099420632769317274175914715963091 S(998,1997) = 0.502550429419446166501590659409431853263428034732196141378159 accuracy = 8.651525693 E-72 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 1999 gammaK(999,1999) = -0.394040109769467813627410826003058468632446796458172609601549 gammaquad(999,1999) = -0.410617764082522196040048097758975867359081416659916688310698 S(999,1999) = 0.211695706611576977899127485924709393572255578142927230411365 accuracy = 7.282328560 E-72 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2003 gammaK(1001,2003) = 1.10178642701757632473140293140953656794436616714468063761728 gammaquad(1001,2003) = 0.151077350506761006565333171257159397002348449537961769945669 S(1001,2003) = 0.397917161369742985407429931152309686325759848424055007689189 accuracy = 5.159696672 E-72 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2011 gammaK(1005,2011) = 1.13865939445646650095252796274511915705165788740622155706491 gammaquad(1005,2011) = 0.100779474027090059160081199391279223334940762598916487386874 S(1005,2011) = 0.466658087034533078866740157057487271278671389140400628713808 accuracy = 2.590163720 E-72 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2017 gammaK(1008,2017) = -0.404495443980010480688120990086884822799375866622254681520294 gammaquad(1008,2017) = -0.321268277625066533835092522298468095585098713461972548352095 S(1008,2017) = 0.117133311950052808428435645083945748578169785512251237678758 accuracy = 1.544723043 E-72 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2027 gammaK(1013,2027) = 0.511880546928118198207502201890572035540243774548304144043514 gammaquad(1013,2027) = -0.129983564932740348437603070564409599929904181427805310640866 S(1013,2027) = 0.384044689298464797976712250911175826399082323218384516719622 accuracy = 6.527049473 E-73 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2029 gammaK(1014,2029) = -0.0425458339279256575149003319079264478015625195898956027614119 gammaquad(1014,2029) = -0.332090982883784119576350067224519112644482241735682137241908 S(1014,2029) = 0.308940526881402697440465411963012196994960207217401963846715 accuracy = 5.494010663 E-73 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2039 gammaK(1019,2039) = -0.748469522027836648177565317973904936037899037925568407561136 gammaquad(1019,2039) = -0.472827245890197672608610199483581155704442083706849365901595 S(1019,2039) = 0.0967229523025368423432215535761573851460644666651634729564302 accuracy = 2.321410260 E-73 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2053 gammaK(1026,2053) = 0.0162665977543717642725190856968828922318102744815180308793931 gammaquad(1026,2053) = -0.330364541014025361556068150922243644840984161858876365823430 S(1026,2053) = 0.336639395101489281321145350292851399996828356420882543911329 accuracy = 6.949890714 E-74 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2063 gammaK(1031,2063) = -0.802950148423893440083301633963912456418296359355221041044026 gammaquad(1031,2063) = -0.507870045308954880009215945769148839212915690756069961631294 S(1031,2063) = 0.104544360885303200747616763986673753095660203770615810834813 accuracy = 2.937039761 E-74 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2069 gammaK(1034,2069) = 0.349136704567522867637478315917676248497572675533850047782268 gammaquad(1034,2069) = -0.245259543858511955799248129670446723783135303849958109682226 S(1034,2069) = 0.417981953038369728343647457938887075886939662646650625153830 accuracy = 1.751966538 E-74 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2081 gammaK(1040,2081) = -0.245657552447108686146236846424139598306963491679378388344048 gammaquad(1040,2081) = -0.318245915498344565449587169924872344014940091646044835625361 S(1040,2081) = 0.193580455662676367947369028681944580481437130892369769519006 accuracy = 6.238231721 E-75 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2083 gammaK(1041,2083) = 0.596514422259908060426916844309970083191754717766406516233774 gammaquad(1041,2083) = -0.213028055267177341596276035978091771537041982107967785585675 S(1041,2083) = 0.509450116435253136460591452393224013866956066158306988369960 accuracy = 5.252753136 E-75 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2087 gammaK(1043,2087) = -0.458201027156752092427642836330085050426199694742568511263988 gammaquad(1043,2087) = -0.379091820185637564438688348054046580664440115576881022218640 S(1043,2087) = 0.148159215785814442302338038331038525707501511023490853516121 accuracy = 3.725081335 E-75 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2089 gammaK(1044,2089) = -0.477727295675331750753039225365797669479101772248809444393624 gammaquad(1044,2089) = -0.333313882416352269598325553770749516913698392828565060071036 S(1044,2089) = 0.0926196692622216993496135630219375549130687777142929499101495 accuracy = 3.137413333 E-75 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2099 gammaK(1049,2099) = -0.287654787155821440350459278831355811508334978062805546013829 gammaquad(1049,2099) = -0.440471053187699173858649246253592002603530460817923561365332 S(1049,2099) = 0.294820681459211563076128717226742631443582643036359684429542 accuracy = 1.332743525 E-75 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2111 gammaK(1055,2111) = -0.837942651452077859055169436013272233117053385567670385333235 gammaquad(1055,2111) = -0.505885414604106065755031918968161175486949552205815839823108 S(1055,2111) = 0.0851001274923210886895947521760306576866249582687909823436944 accuracy = 4.820433344 E-76 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2113 gammaK(1056,2113) = -0.233283111548776552574238393946641007070851242596464493763374 gammaquad(1056,2113) = -0.269098722442575510601477921597239867793914115721776756173763 S(1056,2113) = 0.150644698860986463315458984469347008138234669306132875814631 accuracy = 4.077353696 E-76 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2129 gammaK(1064,2129) = -0.335161766624507912791347653278776521161560971675749838240596 gammaquad(1064,2129) = -0.352038707721437361484633277860773569039267794149253948986215 S(1064,2129) = 0.182657211705965952205805122625529308695362121264887204942186 accuracy = 1.121699103 E-76 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2131 gammaK(1065,2131) = -0.148787816273587721450608369691646798133098271224372297212951 gammaquad(1065,2131) = -0.473194001282391915156859793675724058529699688974564883474942 S(1065,2131) = 0.397000950743696970596136117417656941322381370221302607103438 accuracy = 9.641465152 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2137 gammaK(1068,2137) = -0.421390982448066558242455725544046481914024018078465996789602 gammaquad(1068,2137) = -0.328203835240995456585338863061341607085250183230860087658664 S(1068,2137) = 0.115713597234350017440741527088537550250570925048226336631694 accuracy = 6.259722249 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2141 gammaK(1070,2141) = 0.598286197386758691796779524092467223394921535252152455904440 gammaquad(1070,2141) = -0.155305226201005962074863332556966606441410800930605747128481 S(1070,2141) = 0.452656495854995195170317036934054439129210594253175802393728 accuracy = 4.803427532 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2143 gammaK(1071,2143) = 1.21539417541378389620286809274784234476588111473432111576106 gammaquad(1071,2143) = 0.295316892243985904691396737288420593453816589998501382523582 S(1071,2143) = 0.310589821514382799474957206108014254292261066445181267105322 accuracy = 4.243238174 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2153 gammaK(1076,2153) = 0.231654367090201433740329368917803070856647385975208727954385 gammaquad(1076,2153) = -0.153449444094934349359520163632711858559063136396477028363266 S(1076,2153) = 0.267493491604402082254211168598425362801729011395974009457624 accuracy = 2.523063990 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2161 gammaK(1080,2161) = -0.543391662956187130362538574493474934197089196920600639474342 gammaquad(1080,2161) = -0.353618667694938465844872285867621530128814680939779644819698 S(1080,2161) = 0.0801454458565423807621025649578432340440629022296339840567828 accuracy = 1.896390389 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2179 gammaK(1089,2179) = 1.22469963868726089747372832462063663509273216859739249996479 gammaquad(1089,2179) = 0.138238538870650313214522547581324828980990279057733185561688 S(1089,2179) = 0.472346675024186604788781831203469961938020668765682844883760 accuracy = 1.398871207 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2203 gammaK(1101,2203) = 2.25051703191554364106998160419782989895221672574522601164327 gammaquad(1101,2203) = 0.614370811031258010782812415195913408304141952317651002745719 S(1101,2203) = 0.509139844947675857180990202652815926192204230938466988989715 accuracy = 1.281953346 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2207 gammaK(1103,2207) = -0.594109215889205613878501471516675049137891341481191438896925 gammaquad(1103,2207) = -0.436007843527015330814559086687254855910574694922070909688839 S(1103,2207) = 0.137208133722426862859908863873330812774847489611392879526782 accuracy = 1.277021302 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2213 gammaK(1106,2213) = 0.869682626872001573675800367223023262667982562049807903940805 gammaquad(1106,2213) = -0.0531769602888319528538889333758537330130847101568122196137781 S(1106,2213) = 0.486277291731150314362151718940995368685330249299340913000130 accuracy = 1.272183550 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2221 gammaK(1110,2221) = -0.120049922093228247290619540500571097456389248180428510230751 gammaquad(1110,2221) = -0.355111283804689421332182806824893112432235239774928261293004 S(1110,2221) = 0.293350801851792768983554889949166478540490933290216773693342 accuracy = 1.268624753 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2237 gammaK(1118,2237) = 0.472974291559428148657077706384423713903283688180729722846012 gammaquad(1118,2237) = -0.230573999671645855644537309522897084627133787646573657748529 S(1118,2237) = 0.465336438170168040525865672396482191204809613994785799065841 accuracy = 1.265942737 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2239 gammaK(1119,2239) = -0.661982949547420749732565127918540531684087792188807248349470 gammaquad(1119,2239) = -0.508896422486749224754223919974775915795897500909803851277955 S(1119,2239) = 0.176181582070367099479750982740073953919483383893511894257056 accuracy = 1.265799806 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2243 gammaK(1121,2243) = 0.0520905893330014989553340512809180007788189029847733976994900 gammaquad(1121,2243) = -0.320833668903787005981185701033889395829217375572345609941549 S(1121,2243) = 0.345158274557236861543233146236499060760603294909332157120651 accuracy = 1.265578260 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2251 gammaK(1125,2251) = 1.39935753137681701962536718414079425625065227469913676284451 gammaquad(1125,2251) = 0.231593852226624642745520107996273968711713849058928317537365 S(1125,2251) = 0.466369551274915704346657167466387066008533221664781555510253 accuracy = 1.265310150 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2267 gammaK(1133,2267) = 0.848884370397492798335240393625874029626721180117475026586167 gammaquad(1133,2267) = 0.0475400460557121962762964762263243633387529923888647733675717 S(1133,2267) = 0.375197326113354695169726624476691898465824002863803908381289 accuracy = 1.265108108 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2269 gammaK(1134,2269) = -0.229990178118650418532830077526421060045784623017446985341154 gammaquad(1134,2269) = -0.394878524746566885427626441477146362248865479341381532183696 S(1134,2269) = 0.278179931612113845092537552721947275906405598565347041019616 accuracy = 1.265097341 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2273 gammaK(1136,2273) = 1.06032402812067918771069048226399891023238697951758724786569 gammaquad(1136,2273) = 0.209730314620681284259357746522917867231745918367223893060866 S(1136,2273) = 0.318730806872789352024385706405972538253070435722394393134415 accuracy = 1.265080653 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2281 gammaK(1140,2281) = -0.514231823683373889028067911516735894911404956550644943140238 gammaquad(1140,2281) = -0.346690252620056160934245813407338469841134265010906876271243 S(1140,2281) = 0.0878786457734822892204727203540555625587734636742222310972884 accuracy = 1.265060458 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2287 gammaK(1143,2287) = -0.534776883829274813073251684232973892669149734868755879168195 gammaquad(1143,2287) = -0.494071794073859653533914800262608398336185647820610351532807 S(1143,2287) = 0.224991533219147272994769007044879745139946299120664807761400 accuracy = 1.265052245 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2293 gammaK(1146,2293) = 0.0807703619412318750795318779948880534591651462493825464056447 gammaquad(1146,2293) = -0.301618373164926149347353979989679794889779900052918544273191 S(1146,2293) = 0.340315592468251968117376600850770878725592433666612120817124 accuracy = 1.265047349 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2297 gammaK(1148,2297) = -0.185720242431364792718142013112445743102373390497440142889232 gammaquad(1148,2297) = -0.323953167530204311525964135547606532720165738826286055447532 S(1148,2297) = 0.229407645791288226523417511429600619922809650098675832152061 accuracy = 1.265045240 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2309 gammaK(1154,2309) = 1.60402915368527484510235157683698336759068212388974005570806 gammaquad(1154,2309) = 0.315014464929422529907783891840414075249722342047852823092686 S(1154,2309) = 0.485322345490044508033966719065990570421553957895703756792612 accuracy = 1.265041940 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2311 gammaK(1155,2311) = -0.422475454888595889671632074862020928272362270330452113266295 gammaquad(1155,2311) = -0.427551506117846525303365247203957622002998163468677684356690 S(1155,2311) = 0.214637277459203476414136186310945775383836585715010210457269 accuracy = 1.265041652 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2333 gammaK(1166,2333) = 0.715012709967669166560806311505535604761070189542273381225861 gammaquad(1166,2333) = -0.121797598950362994035815674612061769771866626843238386945222 S(1166,2333) = 0.477641237323558334183967469581804121566240728737858478395611 accuracy = 1.265040350 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2339 gammaK(1169,2339) = -0.245894527868147991008980618707639012976992328577493943471368 gammaquad(1169,2339) = -0.431961319319237228132128322465947450371583567970406710588267 S(1169,2339) = 0.307355056504371064315908489734791234977219047912862513465703 accuracy = 1.265040257 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2341 gammaK(1170,2341) = -0.148724921616955467360991111637532744013030391434184780564471 gammaquad(1170,2341) = -0.376550455440817867473550035028375590992953867258082184020782 S(1170,2341) = 0.300530231070910452005500584086354234583324557494685927206968 accuracy = 1.265040236 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2347 gammaK(1173,2347) = 1.90902693492195562080664275679854651728125215056921870514406 gammaquad(1173,2347) = 0.418593189055266137312101136065668286525312273354419058042538 S(1173,2347) = 0.534266209097133023578511807503796187428832068816209498247494 accuracy = 1.265040189 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2351 gammaK(1175,2351) = -1.06138227498312544064354665729927686679442098617111615096172 gammaquad(1175,2351) = -0.579672022767371851116155163843772052905453882398928031248934 S(1175,2351) = 0.0473292690952686904729838910266248692583857834266651690749580 accuracy = 1.265040169 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2357 gammaK(1178,2357) = 0.972447386745904761166262189060487715905002294442827770847153 gammaquad(1178,2357) = -0.0215065433791274183051846731824301239608026799496744723206227 S(1178,2357) = 0.506082285796448192115398588312840223322664503889228068578423 accuracy = 1.265040149 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2371 gammaK(1185,2371) = -0.0614357956914243857880054019734716545133484931754742315650063 gammaquad(1185,2371) = -0.436795513011845479909266399625071992356937957903246154860428 S(1185,2371) = 0.404438149536161682483590387182696469044470662257188053649316 accuracy = 1.265040129 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2377 gammaK(1188,2377) = -0.426757482815484053213376844961884502497701590029965602894185 gammaquad(1188,2377) = -0.332170920176040055760593107650136820396881764188516528644482 S(1188,2377) = 0.117156321346715496762591459349134873987467116611380797698571 accuracy = 1.265040125 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2381 gammaK(1190,2381) = 0.0972964094658306920625759264583688116369762101491661236915992 gammaquad(1190,2381) = -0.355667930638190567828077491964385101013348225456076048616202 S(1190,2381) = 0.402682674058818757812979153832591788508622176132463790916578 accuracy = 1.265040124 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2383 gammaK(1191,2383) = -0.502245070819528071402745846038006415253359132758435158569394 gammaquad(1191,2383) = -0.480454756537672585644944107497027697898446407774927264557227 S(1191,2383) = 0.227699955074781190136094942002721620751916617076355784486219 accuracy = 1.265040123 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2389 gammaK(1194,2389) = -0.213066757154889711575153614367016111373830982806342313328688 gammaquad(1194,2389) = -0.390707471764654862609451080823958160700801794308828550629108 S(1194,2389) = 0.282545401782828555914496023291562251035101253003621750790126 accuracy = 1.265040122 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2393 gammaK(1196,2393) = 0.489846513748412367427518847006267193259901639038443516987507 gammaquad(1196,2393) = -0.0509056144085351318924075410469392643083759593252045651384534 S(1196,2393) = 0.294202553747643411483432758978010536460274635972998724767074 accuracy = 1.265040122 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2399 gammaK(1199,2399) = -0.975465943338048152649560760529419914298731322437348562694990 gammaquad(1199,2399) = -0.550683725573443858724418518059754064278530232206040555325536 S(1199,2399) = 0.0613279834159210971257802078411989321062422404498453194641066 accuracy = 1.265040121 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2411 gammaK(1205,2411) = -0.498162843670441283846914277422304309401297200928985468803245 gammaquad(1205,2411) = -0.529047601272624808623972892411134155056929727397896560726868 S(1205,2411) = 0.278350453944005583495178680048411554205885953407178348404168 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2417 gammaK(1208,2417) = 0.0428668164217845074791344084141326782581588385624057858912563 gammaquad(1208,2417) = -0.233276184979014223933091657594170206382095906156661900036513 S(1208,2417) = 0.253097365876019167446730508177245516772615115763364037078199 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2423 gammaK(1211,2423) = -0.216135816870265669632813820365810533406297336956686956978777 gammaquad(1211,2423) = -0.274993769284470573757597053330739502233847854528570485872351 S(1211,2423) = 0.165317115655114674174054015706359642723853174127875357143710 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2437 gammaK(1218,2437) = 0.362495869259562584743822179795269704417589606382902367869271 gammaquad(1218,2437) = -0.183059949286640488352158370681443076699214885439721757751043 S(1218,2437) = 0.362707201844659628379053310021293033072879456380255558888842 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2441 gammaK(1220,2441) = -0.0747610235091856709619637766077111397662770828609046537235043 gammaquad(1220,2441) = -0.264120844509032599902813985718671144926965739435454847818959 S(1220,2441) = 0.225141938682637928342096576310521127372172403289846149255560 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2447 gammaK(1223,2447) = -0.425765570931715677265311060435945044332537243487427760280683 gammaquad(1223,2447) = -0.366405412694365480286519856423524108952002720584799039953665 S(1223,2447) = 0.151927652154214372712215360381800220165157230271141591629792 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2459 gammaK(1229,2459) = -0.222938184292763877955456294250898883513721048973296083936445 gammaquad(1229,2459) = -0.425782774004450597863704991368612860098214853090975078758099 S(1229,2459) = 0.312725498366975047705004149680915252937473033811792403853754 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2467 gammaK(1233,2467) = 1.22738474309977512871884819703711980340679299563930590501116 gammaquad(1233,2467) = 0.121556122735599588990299771859400759766381607836086911581820 S(1233,2467) = 0.490552559009638876281835616188298491859935107602425391067138 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2473 gammaK(1236,2473) = -0.518804205988050421648915679701114794913410542571753297808994 gammaquad(1236,2473) = -0.363992033731823567383269927390354511844743021370843798178055 S(1236,2473) = 0.103009593507312633216383613830726574066561529512022793121699 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2477 gammaK(1238,2477) = 2.71598044622019950946761337306075734277440196540613946070820 gammaquad(1238,2477) = 0.810057619683716468604127088349593320199033654055924060281763 S(1238,2477) = 0.546354492879232769256184426159373222622271621208731130767792 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2503 gammaK(1251,2503) = 0.0813802099813382167452753966508535303629378248315681053779580 gammaquad(1251,2503) = -0.238289956157520629110817231481995135039692882918838976775787 S(1251,2503) = 0.277416263128319279007354940014878314550746186616960114600172 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2521 gammaK(1260,2521) = -0.612127143842550961787327970498268010457440309894605322513643 gammaquad(1260,2521) = -0.372422717546474169467237760768254461306304530825355632158804 S(1260,2521) = 0.0648050958380582282908563714747725122369847128475554620987065 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2531 gammaK(1265,2531) = 0.0505389278862106566011488216996955051780704933877120503248378 gammaquad(1265,2531) = -0.301762130032353618410963517294568499500136023137007254210765 S(1265,2531) = 0.325482904299461886622001188818756279993443551951597606147044 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2539 gammaK(1269,2539) = 0.403819063275328060763574338343230527354965154674457744431349 gammaquad(1269,2539) = -0.223424548928607759590898330956163073979501190960314397199988 S(1269,2539) = 0.423789650782642026687584721769226310447579586397351439459159 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2543 gammaK(1271,2543) = -0.268187319563986549106392893611880292744110734866936297068380 gammaquad(1271,2543) = -0.295067470391901751609218475112445001794578984242173779898386 S(1271,2543) = 0.159431501450698776104802623301930653684054224746701580359684 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2549 gammaK(1274,2549) = 0.334371595135534016338233884286752795229962378485799060229127 gammaquad(1274,2549) = -0.254001363729695443842583976689501238840370780635281896701163 S(1274,2549) = 0.419648021500685349295404043415331630018824283083274260384924 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2551 gammaK(1275,2551) = -0.818022013026731685830548505961430040502659082762682160480811 gammaquad(1275,2551) = -0.574543977609901475956295208142153715062189455564156940125639 S(1275,2551) = 0.163994884681213709238084120611708305453120108203174534328728 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2557 gammaK(1278,2557) = -0.0848825354498913855643793624913774926192558686162178905472529 gammaquad(1278,2557) = -0.370501003027228713422573077081153677630322589239341633573958 S(1278,2557) = 0.326524799861107123414370598512511554737534636628345517995419 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2579 gammaK(1289,2579) = -0.292032371776327043647637847502314328350493284694103098924688 gammaquad(1289,2579) = -0.443198559147553244224105999901807707954264160083920579629026 S(1289,2579) = 0.295658875003788220309967133471648628840916462319539077500528 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2591 gammaK(1295,2591) = -0.916327348507183272862000459508572180291411782809249253858432 gammaquad(1295,2591) = -0.537188305341167706285622473175705048293937657445846788582760 S(1295,2591) = 0.0775072953384328053812959321317867550301255632969500256488163 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2593 gammaK(1296,2593) = -0.159043809155897275465248285015390091878571524172853551477433 gammaquad(1296,2593) = -0.243077827530713233750234717622494776382620416830769944646771 S(1296,2593) = 0.162039609143825810449512465142020270106622220884311860284182 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2609 gammaK(1304,2609) = -0.131444833153003028939112749824802304548059533308556373236487 gammaquad(1304,2609) = -0.287632332143957892935277704785763452341785261619103325103502 S(1304,2609) = 0.220401724945305932063906684220469192997628078151918524020199 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2617 gammaK(1308,2617) = -0.243318810876318611031950979139609766780980635029590154010450 gammaquad(1308,2617) = -0.275851270087465310876338388557003510135650803297089704481977 S(1308,2617) = 0.152687701059372873506888334285467230137243276896346876853454 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2621 gammaK(1310,2621) = 1.16688466201122042599953959154402631976770329928487420304069 gammaquad(1310,2621) = 0.113375932941514658482749145065396833286705892972058339417042 S(1310,2621) = 0.468564239437507118192339278422852072311279136211280099303042 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2633 gammaK(1316,2633) = -0.0755732977390288904540404913922760276246078124008325749532688 gammaquad(1316,2633) = -0.281671144921758246529730162014709826066944722062589266202828 S(1316,2633) = 0.242388318400363803315969249976112323273992022333485703781049 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2647 gammaK(1323,2647) = 1.15772008754666189797351419573121911515804686523982057285246 gammaquad(1323,2647) = 0.273146149409443509775942945904491119113110503699576331684365 S(1323,2647) = 0.304224630909195999061780399177697406836950926276820066258940 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2657 gammaK(1328,2657) = 0.227518023477168684117298975038848504217194937819627345805997 gammaquad(1328,2657) = -0.154928971422215760713564749387405907263274398399720459567615 S(1328,2657) = 0.267203617018902547519060292767669392836495903125443667818523 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2659 gammaK(1329,2659) = 0.0590226903161623859851822602026189551442718423718728193170688 gammaquad(1329,2659) = -0.382297035641676593641833032053577714750203027919114515478540 S(1329,2659) = 0.410324990018861808490566813816427750148977219775897740954791 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2663 gammaK(1331,2663) = -0.556112484849660101477456940603764251288211572749951896096532 gammaquad(1331,2663) = -0.410649322758645607016260382698377856820900165907967619796603 S(1331,2663) = 0.131111636196735553980246134075940583330999420229978821865041 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2671 gammaK(1335,2671) = 0.245720165577168441592398539408619160900423793834630131670425 gammaquad(1335,2671) = -0.124271953518335897046214064249592906141049963441991491289836 S(1335,2671) = 0.245654469225813383597355744313409305540890019968020475825434 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2677 gammaK(1338,2677) = 0.114100705449782350770715296495481356792427424624192456186236 gammaquad(1338,2677) = -0.302813028782123381560972056673693829833415409323678400343074 S(1338,2677) = 0.358388708105758885700417790481159597494959768246222650157474 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2683 gammaK(1341,2683) = 2.35495931494283321933502926325402307669457902910352738773209 gammaquad(1341,2683) = 0.645587152577401942179906526447580668101926965743803847563701 S(1341,2683) = 0.530420713162018838975529713454644444986380766491968994998681 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2687 gammaK(1343,2687) = -0.825209939430395007999831014709077893552404250364075083968337 gammaquad(1343,2687) = -0.522208774669281014459813300365883930789247671048623548725194 S(1343,2687) = 0.108133927700059777916088934038451243493406164979238307395261 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2689 gammaK(1344,2689) = -0.637172437095107238420456950997847242360607437084238428989849 gammaquad(1344,2689) = -0.381063300391520743317718106093327393643222663072218177626920 S(1344,2689) = 0.0610081598468933025544064228674159866707791212182042988449168 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2693 gammaK(1346,2693) = 1.93862466418126434428562315565026645874709797979566540840356 gammaquad(1346,2693) = 0.437800785390440509702549011876017985023723095361593192321986 S(1346,2693) = 0.530044531266905704247707264178333990118302440930022881834382 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2699 gammaK(1349,2699) = 0.430499884475167778126100924411604186229721571537436602962696 gammaquad(1349,2699) = -0.127122492077336115701868831403344687726895466909505633370630 S(1349,2699) = 0.340908268893678714058041062666575115885646642935604937474640 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2707 gammaK(1353,2707) = 1.40939320546613852261152817277804719899514979879937815651681 gammaquad(1353,2707) = 0.210755972739742582533650496677897882502768145159817683719173 S(1353,2707) = 0.492480246347795580992538543011276698149662296944451671292577 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2711 gammaK(1355,2711) = -0.796543764244315217602225390888288730700173795058084449958739 gammaquad(1355,2711) = -0.493841020260244498985315344377345078684539579051621275885511 S(1355,2711) = 0.0941106376123491290170935004039512313994189378892390218982541 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2713 gammaK(1356,2713) = -0.407452672025204730390167158351962857332993102186093190173149 gammaquad(1356,2713) = -0.328349948769330729546697104505782811284491330697732138978423 S(1356,2713) = 0.123166051858376791389914512526993750578489302317754388402427 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2719 gammaK(1359,2719) = -0.784867667176430829550157231613760546172574311298479468748165 gammaquad(1359,2719) = -0.563889253354200945883365364347265523464506549534936140503002 S(1359,2719) = 0.170000670052109064825496629353046817012309649377659696699293 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2729 gammaK(1364,2729) = -0.228318951495028633854017175286324947623492691883497963123131 gammaquad(1364,2729) = -0.324242667679275025664661773991384415273463510489556260859011 S(1364,2729) = 0.208633102026938799193781022539372929942127050435541588887908 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2731 gammaK(1365,2731) = 0.234041519132000166596039106647449637681439382936915744986487 gammaquad(1365,2731) = -0.332291541025405506826258014537908214056201583890974484047873 S(1365,2731) = 0.447863138847545937192336103503134693724112726382992224491095 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2741 gammaK(1370,2741) = 0.362620743002060616441123388596349405300522225101786804948258 gammaquad(1370,2741) = -0.244241664881716562291988776594372278160081350826209412122391 S(1370,2741) = 0.424107496584151471645497771550108096428403100685504255377243 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2749 gammaK(1374,2749) = 0.257390745714725589397293732006619948340704811012525471872455 gammaquad(1374,2749) = -0.210369859853733472188107186632447015250927334301314184629815 S(1374,2749) = 0.337624367993453391029282764410101695714702809818505480943791 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2753 gammaK(1376,2753) = -0.247171989717523319062634517974746333745095769220924880004017 gammaquad(1376,2753) = -0.351046700382590456010148001962109250884539737509285724437500 S(1376,2753) = 0.226021670911702596022069380554593802994077349223891366322643 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2767 gammaK(1383,2767) = 0.208812471588021124735153656415211774041704325315353222237295 gammaquad(1383,2767) = -0.178466687297120191030068318652984312862657044224350326894052 S(1383,2767) = 0.281440255162752784144929420247431745671567515035574092859381 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2777 gammaK(1388,2777) = 0.615322526002317502299450229852229951221904315241851003786774 gammaquad(1388,2777) = 0.00831587969210185880562711437457778730118214254397247061960885 S(1388,2777) = 0.297917226520997310292918717134931266005753433835224972563225 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2789 gammaK(1394,2789) = 1.04805516061722982021702335009188622966578305991744475805439 gammaquad(1394,2789) = 0.0516655980852824975017113020968590746961518648611911234448898 S(1394,2789) = 0.470939199155250007844751219928262086136188353470482407218870 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2791 gammaK(1395,2791) = -0.670172443671964022697280735487370444995454734288634408157154 gammaquad(1395,2791) = -0.513237660554453077658646514509921238796746814704772114053661 S(1395,2791) = 0.176729547099557746924667819838613905207786776752236499522558 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2797 gammaK(1398,2797) = -0.0141198304513058304066313741774773799693997632687932794366311 gammaquad(1398,2797) = -0.343151027646338177196990960282775035946403438508847756478813 S(1398,2797) = 0.334671888047795068909651689112861055136356897333375062684854 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2801 gammaK(1400,2801) = -0.237789531739543003090998200793876490501831603429300556413365 gammaquad(1400,2801) = -0.319105447540658809573667465506742466525417965837551588102282 S(1400,2801) = 0.198793229568162288648852337762698539024226701335679839660323 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2803 gammaK(1401,2803) = 0.544162433198681995493677376690823950229010669619000542697068 gammaquad(1401,2803) = -0.213853788576720088987133280695430328230284362369769264712234 S(1401,2803) = 0.484518437447444957490757412447235269391761941954271450031697 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2819 gammaK(1409,2819) = -0.204223560738277521810857557884521858264112594314966732319531 gammaquad(1409,2819) = -0.404116611370955721707570443014846187270665267336065248472384 S(1409,2819) = 0.300595296315671802436422218754838513747853320247781092842992 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2833 gammaK(1416,2833) = -0.190736501561602532383224325126013696914988192492597134800268 gammaquad(1416,2833) = -0.255411705683077338315016719026720297501653162702534751653549 S(1416,2833) = 0.158640013606402040246355753817704521738167103665574797458914 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2837 gammaK(1418,2837) = 0.347080424269092482274054892336370722916165467197357879868697 gammaquad(1418,2837) = -0.294317152843301976439208173685389215801576295945583193232309 S(1418,2837) = 0.466455654393431988495058912300456620937779278520854711775595 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2843 gammaK(1421,2843) = 0.127560485890480377443665583076378100798628180297827574116179 gammaquad(1421,2843) = -0.311430282355746419005877525181454105677712075217117744804490 S(1421,2843) = 0.373811402304566657027002863301571546992853138798488519388406 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2851 gammaK(1425,2851) = 0.386035055308760699206560625056995078410959541165252343459066 gammaquad(1425,2851) = -0.250488484784169078715950464503146150206751771768941990608351 S(1425,2851) = 0.442110323826459485864382581591143845015944987952696316445352 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2857 gammaK(1428,2857) = -0.476486320835735203986901113815605925404621281473541819797793 gammaquad(1428,2857) = -0.354325692481911408221901561586037477954931530081494481903155 S(1428,2857) = 0.114689407518835337553353908034767864565736505353223562904462 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2861 gammaK(1430,2861) = 0.291330068098475082343364022595703832787828542994798472418374 gammaquad(1430,2861) = -0.289699903830050704946550130255057102670223017668082514212617 S(1430,2861) = 0.433973517163720045023892929796606292082079328955511682773332 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2879 gammaK(1439,2879) = -0.851906911130716089019036087479125907924397890711855715554467 gammaquad(1439,2879) = -0.513738449345956778660095591137177640278682092995993406539435 S(1439,2879) = 0.0864011858774347008163252394120971733409303488464749406000460 accuracy = 1.265040120 E-77 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2887 gammaK(1443,2887) = -0.0293676077493574057471480813989298299696284834430061008663229 gammaquad(1443,2887) = -0.271976566160708708990273475683256589885315230011922358139727 S(1443,2887) = 0.255912309552200668782321532232621362718569023016059073313745 accuracy = 8.052417925 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2897 gammaK(1448,2897) = 0.503642604571318206285578989323284177424221539209349741587319 gammaquad(1448,2897) = -0.0424265974662036719095388765700056266221755902096078710694415 S(1448,2897) = 0.292871616775728564002774789829545709350227393765318121354366 accuracy = 5.239439023 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2903 gammaK(1451,2903) = -0.974592270593626788162056730122490104044178335793544545403322 gammaquad(1451,2903) = -0.579602329600957403607229496165232409362454759842169277350134 S(1451,2903) = 0.0909324003751252931423049729621708649324363763308470618447225 accuracy = 4.048530287 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2909 gammaK(1454,2909) = 0.0833076932696815671875707092588468644888385379210560454814837 gammaquad(1454,2909) = -0.359451240768008708472570420335950429695906616997059035458745 S(1454,2909) = 0.399733772984263659598626454953855479053337647198813115790385 accuracy = 3.128298153 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2917 gammaK(1458,2917) = 1.57317823551039186196871144452045853695531873560643070870815 gammaquad(1458,2917) = 0.366648799519757054510796092826529806194941453445499924100344 S(1458,2917) = 0.418572295092457442759785643004297939167098940348482127328833 accuracy = 2.218126232 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2927 gammaK(1463,2927) = 0.155766629515915239094098726031710180557455206120876725004299 gammaquad(1463,2927) = -0.103767157014506313635207160896804968582374452811985793912240 S(1463,2927) = 0.180286539221764704568259903254862227007674288779082372583147 accuracy = 1.443209280 E-51 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2939 gammaK(1469,2939) = -0.710994696883906226256755620531457355935431319546058162164952 gammaquad(1469,2939) = -0.616033707547096450301825537325538071983664975970260705656026 S(1469,2939) = 0.259177301129238143614409434638291008475366125604992602408966 accuracy = 8.616567325 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2953 gammaK(1476,2953) = -0.239452651906596840453286911945135327953166807670849777356144 gammaquad(1476,2953) = -0.274060136015739428070646776639253755261626132277831652885348 S(1476,2953) = 0.152980392568920695738845684008436953360849710469523330662406 accuracy = 4.720604338 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2957 gammaK(1478,2957) = 1.21115771756959391668430730362226496610842131909248480660291 gammaquad(1478,2957) = 0.0884204968576963541199758436817969396271356238269075853947752 S(1478,2957) = 0.515806546886530158143454962701013795034670252327226001293886 accuracy = 3.974918045 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2963 gammaK(1481,2963) = 0.566676535893188145866920464204987828218442291590239006850804 gammaquad(1481,2963) = -0.104633713830461497100255770610388316273944264317052032426171 S(1481,2963) = 0.386622562879760910134800828897146140484230673096295226134706 accuracy = 3.071302229 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2969 gammaK(1484,2969) = -0.224628496665040251059084864757916330852722390006352841765880 gammaquad(1484,2969) = -0.314403803100171136247872553626991289690699940897050965664025 S(1484,2969) = 0.200742523016511563312250480345864112756958852921241187717441 accuracy = 2.373095135 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2971 gammaK(1485,2971) = 0.579605187740223220775854282164443634453143145804852424945484 gammaquad(1485,2971) = -0.144510142268834900969756203025446245063574640637784219185215 S(1485,2971) = 0.432966498112774355189018288889550847060270872305695772380686 accuracy = 2.177604234 E-52 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- q = 2999 gammaK(1499,2999) = -1.11125200543120555588224287762063197137469704937462545792439 gammaquad(1499,2999) = -0.600502322521062672121508376905838093843308433084697566035996 S(1499,2999) = 0.0435410906228800060735982526401953245778710006130725658104197 accuracy = 6.535090994 E-53 acceleration level S1 = 7 the second sum is already less than the desired accuracy --------- gammaquad(q) computation time (output time included): 2 min, 2 sec, 230 millisec ****** END PROGRAM ******** ? *******/