gsl_specfunc__zeta.c 33 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051
  1. /* specfunc/zeta.c
  2. *
  3. * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004 Gerard Jungman
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 3 of the License, or (at
  8. * your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  18. */
  19. /* Author: G. Jungman */
  20. #include "gsl__config.h"
  21. #include "gsl_math.h"
  22. #include "gsl_errno.h"
  23. #include "gsl_sf_elementary.h"
  24. #include "gsl_sf_exp.h"
  25. #include "gsl_sf_gamma.h"
  26. #include "gsl_sf_pow_int.h"
  27. #include "gsl_sf_zeta.h"
  28. #include "gsl_specfunc__error.h"
  29. #include "gsl_specfunc__chebyshev.h"
  30. #include "gsl_specfunc__cheb_eval.c"
  31. #define LogTwoPi_ 1.8378770664093454835606594728111235279723
  32. /*-*-*-*-*-*-*-*-*-*-*-* Private Section *-*-*-*-*-*-*-*-*-*-*-*/
  33. /* chebyshev fit for (s(t)-1)Zeta[s(t)]
  34. * s(t)= (t+1)/2
  35. * -1 <= t <= 1
  36. */
  37. static double zeta_xlt1_data[14] = {
  38. 1.48018677156931561235192914649,
  39. 0.25012062539889426471999938167,
  40. 0.00991137502135360774243761467,
  41. -0.00012084759656676410329833091,
  42. -4.7585866367662556504652535281e-06,
  43. 2.2229946694466391855561441361e-07,
  44. -2.2237496498030257121309056582e-09,
  45. -1.0173226513229028319420799028e-10,
  46. 4.3756643450424558284466248449e-12,
  47. -6.2229632593100551465504090814e-14,
  48. -6.6116201003272207115277520305e-16,
  49. 4.9477279533373912324518463830e-17,
  50. -1.0429819093456189719660003522e-18,
  51. 6.9925216166580021051464412040e-21,
  52. };
  53. static cheb_series zeta_xlt1_cs = {
  54. zeta_xlt1_data,
  55. 13,
  56. -1, 1,
  57. 8
  58. };
  59. /* chebyshev fit for (s(t)-1)Zeta[s(t)]
  60. * s(t)= (19t+21)/2
  61. * -1 <= t <= 1
  62. */
  63. static double zeta_xgt1_data[30] = {
  64. 19.3918515726724119415911269006,
  65. 9.1525329692510756181581271500,
  66. 0.2427897658867379985365270155,
  67. -0.1339000688262027338316641329,
  68. 0.0577827064065028595578410202,
  69. -0.0187625983754002298566409700,
  70. 0.0039403014258320354840823803,
  71. -0.0000581508273158127963598882,
  72. -0.0003756148907214820704594549,
  73. 0.0001892530548109214349092999,
  74. -0.0000549032199695513496115090,
  75. 8.7086484008939038610413331863e-6,
  76. 6.4609477924811889068410083425e-7,
  77. -9.6749773915059089205835337136e-7,
  78. 3.6585400766767257736982342461e-7,
  79. -8.4592516427275164351876072573e-8,
  80. 9.9956786144497936572288988883e-9,
  81. 1.4260036420951118112457144842e-9,
  82. -1.1761968823382879195380320948e-9,
  83. 3.7114575899785204664648987295e-10,
  84. -7.4756855194210961661210215325e-11,
  85. 7.8536934209183700456512982968e-12,
  86. 9.9827182259685539619810406271e-13,
  87. -7.5276687030192221587850302453e-13,
  88. 2.1955026393964279988917878654e-13,
  89. -4.1934859852834647427576319246e-14,
  90. 4.6341149635933550715779074274e-15,
  91. 2.3742488509048340106830309402e-16,
  92. -2.7276516388124786119323824391e-16,
  93. 7.8473570134636044722154797225e-17
  94. };
  95. static cheb_series zeta_xgt1_cs = {
  96. zeta_xgt1_data,
  97. 29,
  98. -1, 1,
  99. 17
  100. };
  101. /* chebyshev fit for Ln[Zeta[s(t)] - 1 - 2^(-s(t))]
  102. * s(t)= 10 + 5t
  103. * -1 <= t <= 1; 5 <= s <= 15
  104. */
  105. static double zetam1_inter_data[24] = {
  106. -21.7509435653088483422022339374,
  107. -5.63036877698121782876372020472,
  108. 0.0528041358684229425504861579635,
  109. -0.0156381809179670789342700883562,
  110. 0.00408218474372355881195080781927,
  111. -0.0010264867349474874045036628282,
  112. 0.000260469880409886900143834962387,
  113. -0.0000676175847209968878098566819447,
  114. 0.0000179284472587833525426660171124,
  115. -4.83238651318556188834107605116e-6,
  116. 1.31913788964999288471371329447e-6,
  117. -3.63760500656329972578222188542e-7,
  118. 1.01146847513194744989748396574e-7,
  119. -2.83215225141806501619105289509e-8,
  120. 7.97733710252021423361012829496e-9,
  121. -2.25850168553956886676250696891e-9,
  122. 6.42269392950164306086395744145e-10,
  123. -1.83363861846127284505060843614e-10,
  124. 5.25309763895283179960368072104e-11,
  125. -1.50958687042589821074710575446e-11,
  126. 4.34997545516049244697776942981e-12,
  127. -1.25597782748190416118082322061e-12,
  128. 3.61280740072222650030134104162e-13,
  129. -9.66437239205745207188920348801e-14
  130. };
  131. static cheb_series zetam1_inter_cs = {
  132. zetam1_inter_data,
  133. 22,
  134. -1, 1,
  135. 12
  136. };
  137. /* assumes s >= 0 and s != 1.0 */
  138. inline
  139. static int
  140. riemann_zeta_sgt0(double s, gsl_sf_result * result)
  141. {
  142. if(s < 1.0) {
  143. gsl_sf_result c;
  144. cheb_eval_e(&zeta_xlt1_cs, 2.0*s - 1.0, &c);
  145. result->val = c.val / (s - 1.0);
  146. result->err = c.err / fabs(s-1.0) + GSL_DBL_EPSILON * fabs(result->val);
  147. return GSL_SUCCESS;
  148. }
  149. else if(s <= 20.0) {
  150. double x = (2.0*s - 21.0)/19.0;
  151. gsl_sf_result c;
  152. cheb_eval_e(&zeta_xgt1_cs, x, &c);
  153. result->val = c.val / (s - 1.0);
  154. result->err = c.err / (s - 1.0) + GSL_DBL_EPSILON * fabs(result->val);
  155. return GSL_SUCCESS;
  156. }
  157. else {
  158. double f2 = 1.0 - pow(2.0,-s);
  159. double f3 = 1.0 - pow(3.0,-s);
  160. double f5 = 1.0 - pow(5.0,-s);
  161. double f7 = 1.0 - pow(7.0,-s);
  162. result->val = 1.0/(f2*f3*f5*f7);
  163. result->err = 3.0 * GSL_DBL_EPSILON * fabs(result->val);
  164. return GSL_SUCCESS;
  165. }
  166. }
  167. inline
  168. static int
  169. riemann_zeta1ms_slt0(double s, gsl_sf_result * result)
  170. {
  171. if(s > -19.0) {
  172. double x = (-19 - 2.0*s)/19.0;
  173. gsl_sf_result c;
  174. cheb_eval_e(&zeta_xgt1_cs, x, &c);
  175. result->val = c.val / (-s);
  176. result->err = c.err / (-s) + GSL_DBL_EPSILON * fabs(result->val);
  177. return GSL_SUCCESS;
  178. }
  179. else {
  180. double f2 = 1.0 - pow(2.0,-(1.0-s));
  181. double f3 = 1.0 - pow(3.0,-(1.0-s));
  182. double f5 = 1.0 - pow(5.0,-(1.0-s));
  183. double f7 = 1.0 - pow(7.0,-(1.0-s));
  184. result->val = 1.0/(f2*f3*f5*f7);
  185. result->err = 3.0 * GSL_DBL_EPSILON * fabs(result->val);
  186. return GSL_SUCCESS;
  187. }
  188. }
  189. /* works for 5 < s < 15*/
  190. static int
  191. riemann_zeta_minus_1_intermediate_s(double s, gsl_sf_result * result)
  192. {
  193. double t = (s - 10.0)/5.0;
  194. gsl_sf_result c;
  195. cheb_eval_e(&zetam1_inter_cs, t, &c);
  196. result->val = exp(c.val) + pow(2.0, -s);
  197. result->err = (c.err + 2.0*GSL_DBL_EPSILON)*result->val;
  198. return GSL_SUCCESS;
  199. }
  200. /* assumes s is large and positive
  201. * write: zeta(s) - 1 = zeta(s) * (1 - 1/zeta(s))
  202. * and expand a few terms of the product formula to evaluate 1 - 1/zeta(s)
  203. *
  204. * works well for s > 15
  205. */
  206. static int
  207. riemann_zeta_minus1_large_s(double s, gsl_sf_result * result)
  208. {
  209. double a = pow( 2.0,-s);
  210. double b = pow( 3.0,-s);
  211. double c = pow( 5.0,-s);
  212. double d = pow( 7.0,-s);
  213. double e = pow(11.0,-s);
  214. double f = pow(13.0,-s);
  215. double t1 = a + b + c + d + e + f;
  216. double t2 = a*(b+c+d+e+f) + b*(c+d+e+f) + c*(d+e+f) + d*(e+f) + e*f;
  217. /*
  218. double t3 = a*(b*(c+d+e+f) + c*(d+e+f) + d*(e+f) + e*f) +
  219. b*(c*(d+e+f) + d*(e+f) + e*f) +
  220. c*(d*(e+f) + e*f) +
  221. d*e*f;
  222. double t4 = a*(b*(c*(d + e + f) + d*(e + f) + e*f) + c*(d*(e+f) + e*f) + d*e*f) +
  223. b*(c*(d*(e+f) + e*f) + d*e*f) +
  224. c*d*e*f;
  225. double t5 = b*c*d*e*f + a*c*d*e*f+ a*b*d*e*f+ a*b*c*e*f+ a*b*c*d*f+ a*b*c*d*e;
  226. double t6 = a*b*c*d*e*f;
  227. */
  228. double numt = t1 - t2 /* + t3 - t4 + t5 - t6 */;
  229. double zeta = 1.0/((1.0-a)*(1.0-b)*(1.0-c)*(1.0-d)*(1.0-e)*(1.0-f));
  230. result->val = numt*zeta;
  231. result->err = (15.0/s + 1.0) * 6.0*GSL_DBL_EPSILON*result->val;
  232. return GSL_SUCCESS;
  233. }
  234. #if 0
  235. /* zeta(n) */
  236. #define ZETA_POS_TABLE_NMAX 100
  237. static double zeta_pos_int_table_OLD[ZETA_POS_TABLE_NMAX+1] = {
  238. -0.50000000000000000000000000000, /* zeta(0) */
  239. 0.0 /* FIXME: DirectedInfinity() */, /* zeta(1) */
  240. 1.64493406684822643647241516665, /* ... */
  241. 1.20205690315959428539973816151,
  242. 1.08232323371113819151600369654,
  243. 1.03692775514336992633136548646,
  244. 1.01734306198444913971451792979,
  245. 1.00834927738192282683979754985,
  246. 1.00407735619794433937868523851,
  247. 1.00200839282608221441785276923,
  248. 1.00099457512781808533714595890,
  249. 1.00049418860411946455870228253,
  250. 1.00024608655330804829863799805,
  251. 1.00012271334757848914675183653,
  252. 1.00006124813505870482925854511,
  253. 1.00003058823630702049355172851,
  254. 1.00001528225940865187173257149,
  255. 1.00000763719763789976227360029,
  256. 1.00000381729326499983985646164,
  257. 1.00000190821271655393892565696,
  258. 1.00000095396203387279611315204,
  259. 1.00000047693298678780646311672,
  260. 1.00000023845050272773299000365,
  261. 1.00000011921992596531107306779,
  262. 1.00000005960818905125947961244,
  263. 1.00000002980350351465228018606,
  264. 1.00000001490155482836504123466,
  265. 1.00000000745071178983542949198,
  266. 1.00000000372533402478845705482,
  267. 1.00000000186265972351304900640,
  268. 1.00000000093132743241966818287,
  269. 1.00000000046566290650337840730,
  270. 1.00000000023283118336765054920,
  271. 1.00000000011641550172700519776,
  272. 1.00000000005820772087902700889,
  273. 1.00000000002910385044497099687,
  274. 1.00000000001455192189104198424,
  275. 1.00000000000727595983505748101,
  276. 1.00000000000363797954737865119,
  277. 1.00000000000181898965030706595,
  278. 1.00000000000090949478402638893,
  279. 1.00000000000045474737830421540,
  280. 1.00000000000022737368458246525,
  281. 1.00000000000011368684076802278,
  282. 1.00000000000005684341987627586,
  283. 1.00000000000002842170976889302,
  284. 1.00000000000001421085482803161,
  285. 1.00000000000000710542739521085,
  286. 1.00000000000000355271369133711,
  287. 1.00000000000000177635684357912,
  288. 1.00000000000000088817842109308,
  289. 1.00000000000000044408921031438,
  290. 1.00000000000000022204460507980,
  291. 1.00000000000000011102230251411,
  292. 1.00000000000000005551115124845,
  293. 1.00000000000000002775557562136,
  294. 1.00000000000000001387778780973,
  295. 1.00000000000000000693889390454,
  296. 1.00000000000000000346944695217,
  297. 1.00000000000000000173472347605,
  298. 1.00000000000000000086736173801,
  299. 1.00000000000000000043368086900,
  300. 1.00000000000000000021684043450,
  301. 1.00000000000000000010842021725,
  302. 1.00000000000000000005421010862,
  303. 1.00000000000000000002710505431,
  304. 1.00000000000000000001355252716,
  305. 1.00000000000000000000677626358,
  306. 1.00000000000000000000338813179,
  307. 1.00000000000000000000169406589,
  308. 1.00000000000000000000084703295,
  309. 1.00000000000000000000042351647,
  310. 1.00000000000000000000021175824,
  311. 1.00000000000000000000010587912,
  312. 1.00000000000000000000005293956,
  313. 1.00000000000000000000002646978,
  314. 1.00000000000000000000001323489,
  315. 1.00000000000000000000000661744,
  316. 1.00000000000000000000000330872,
  317. 1.00000000000000000000000165436,
  318. 1.00000000000000000000000082718,
  319. 1.00000000000000000000000041359,
  320. 1.00000000000000000000000020680,
  321. 1.00000000000000000000000010340,
  322. 1.00000000000000000000000005170,
  323. 1.00000000000000000000000002585,
  324. 1.00000000000000000000000001292,
  325. 1.00000000000000000000000000646,
  326. 1.00000000000000000000000000323,
  327. 1.00000000000000000000000000162,
  328. 1.00000000000000000000000000081,
  329. 1.00000000000000000000000000040,
  330. 1.00000000000000000000000000020,
  331. 1.00000000000000000000000000010,
  332. 1.00000000000000000000000000005,
  333. 1.00000000000000000000000000003,
  334. 1.00000000000000000000000000001,
  335. 1.00000000000000000000000000001,
  336. 1.00000000000000000000000000000,
  337. 1.00000000000000000000000000000,
  338. 1.00000000000000000000000000000
  339. };
  340. #endif /* 0 */
  341. /* zeta(n) - 1 */
  342. #define ZETA_POS_TABLE_NMAX 100
  343. static double zetam1_pos_int_table[ZETA_POS_TABLE_NMAX+1] = {
  344. -1.5, /* zeta(0) */
  345. 0.0, /* FIXME: Infinity */ /* zeta(1) - 1 */
  346. 0.644934066848226436472415166646, /* zeta(2) - 1 */
  347. 0.202056903159594285399738161511,
  348. 0.082323233711138191516003696541,
  349. 0.036927755143369926331365486457,
  350. 0.017343061984449139714517929790,
  351. 0.008349277381922826839797549849,
  352. 0.004077356197944339378685238508,
  353. 0.002008392826082214417852769232,
  354. 0.000994575127818085337145958900,
  355. 0.000494188604119464558702282526,
  356. 0.000246086553308048298637998047,
  357. 0.000122713347578489146751836526,
  358. 0.000061248135058704829258545105,
  359. 0.000030588236307020493551728510,
  360. 0.000015282259408651871732571487,
  361. 7.6371976378997622736002935630e-6,
  362. 3.8172932649998398564616446219e-6,
  363. 1.9082127165539389256569577951e-6,
  364. 9.5396203387279611315203868344e-7,
  365. 4.7693298678780646311671960437e-7,
  366. 2.3845050272773299000364818675e-7,
  367. 1.1921992596531107306778871888e-7,
  368. 5.9608189051259479612440207935e-8,
  369. 2.9803503514652280186063705069e-8,
  370. 1.4901554828365041234658506630e-8,
  371. 7.4507117898354294919810041706e-9,
  372. 3.7253340247884570548192040184e-9,
  373. 1.8626597235130490064039099454e-9,
  374. 9.3132743241966818287176473502e-10,
  375. 4.6566290650337840729892332512e-10,
  376. 2.3283118336765054920014559759e-10,
  377. 1.1641550172700519775929738354e-10,
  378. 5.8207720879027008892436859891e-11,
  379. 2.9103850444970996869294252278e-11,
  380. 1.4551921891041984235929632245e-11,
  381. 7.2759598350574810145208690123e-12,
  382. 3.6379795473786511902372363558e-12,
  383. 1.8189896503070659475848321007e-12,
  384. 9.0949478402638892825331183869e-13,
  385. 4.5474737830421540267991120294e-13,
  386. 2.2737368458246525152268215779e-13,
  387. 1.1368684076802278493491048380e-13,
  388. 5.6843419876275856092771829675e-14,
  389. 2.8421709768893018554550737049e-14,
  390. 1.4210854828031606769834307141e-14,
  391. 7.1054273952108527128773544799e-15,
  392. 3.5527136913371136732984695340e-15,
  393. 1.7763568435791203274733490144e-15,
  394. 8.8817842109308159030960913863e-16,
  395. 4.4408921031438133641977709402e-16,
  396. 2.2204460507980419839993200942e-16,
  397. 1.1102230251410661337205445699e-16,
  398. 5.5511151248454812437237365905e-17,
  399. 2.7755575621361241725816324538e-17,
  400. 1.3877787809725232762839094906e-17,
  401. 6.9388939045441536974460853262e-18,
  402. 3.4694469521659226247442714961e-18,
  403. 1.7347234760475765720489729699e-18,
  404. 8.6736173801199337283420550673e-19,
  405. 4.3368086900206504874970235659e-19,
  406. 2.1684043449972197850139101683e-19,
  407. 1.0842021724942414063012711165e-19,
  408. 5.4210108624566454109187004043e-20,
  409. 2.7105054312234688319546213119e-20,
  410. 1.3552527156101164581485233996e-20,
  411. 6.7762635780451890979952987415e-21,
  412. 3.3881317890207968180857031004e-21,
  413. 1.6940658945097991654064927471e-21,
  414. 8.4703294725469983482469926091e-22,
  415. 4.2351647362728333478622704833e-22,
  416. 2.1175823681361947318442094398e-22,
  417. 1.0587911840680233852265001539e-22,
  418. 5.2939559203398703238139123029e-23,
  419. 2.6469779601698529611341166842e-23,
  420. 1.3234889800848990803094510250e-23,
  421. 6.6174449004244040673552453323e-24,
  422. 3.3087224502121715889469563843e-24,
  423. 1.6543612251060756462299236771e-24,
  424. 8.2718061255303444036711056167e-25,
  425. 4.1359030627651609260093824555e-25,
  426. 2.0679515313825767043959679193e-25,
  427. 1.0339757656912870993284095591e-25,
  428. 5.1698788284564313204101332166e-26,
  429. 2.5849394142282142681277617708e-26,
  430. 1.2924697071141066700381126118e-26,
  431. 6.4623485355705318034380021611e-27,
  432. 3.2311742677852653861348141180e-27,
  433. 1.6155871338926325212060114057e-27,
  434. 8.0779356694631620331587381863e-28,
  435. 4.0389678347315808256222628129e-28,
  436. 2.0194839173657903491587626465e-28,
  437. 1.0097419586828951533619250700e-28,
  438. 5.0487097934144756960847711725e-29,
  439. 2.5243548967072378244674341938e-29,
  440. 1.2621774483536189043753999660e-29,
  441. 6.3108872417680944956826093943e-30,
  442. 3.1554436208840472391098412184e-30,
  443. 1.5777218104420236166444327830e-30,
  444. 7.8886090522101180735205378276e-31
  445. };
  446. #define ZETA_NEG_TABLE_NMAX 99
  447. #define ZETA_NEG_TABLE_SIZE 50
  448. static double zeta_neg_int_table[ZETA_NEG_TABLE_SIZE] = {
  449. -0.083333333333333333333333333333, /* zeta(-1) */
  450. 0.008333333333333333333333333333, /* zeta(-3) */
  451. -0.003968253968253968253968253968, /* ... */
  452. 0.004166666666666666666666666667,
  453. -0.007575757575757575757575757576,
  454. 0.021092796092796092796092796093,
  455. -0.083333333333333333333333333333,
  456. 0.44325980392156862745098039216,
  457. -3.05395433027011974380395433027,
  458. 26.4562121212121212121212121212,
  459. -281.460144927536231884057971014,
  460. 3607.5105463980463980463980464,
  461. -54827.583333333333333333333333,
  462. 974936.82385057471264367816092,
  463. -2.0052695796688078946143462272e+07,
  464. 4.7238486772162990196078431373e+08,
  465. -1.2635724795916666666666666667e+10,
  466. 3.8087931125245368811553022079e+11,
  467. -1.2850850499305083333333333333e+13,
  468. 4.8241448354850170371581670362e+14,
  469. -2.0040310656516252738108421663e+16,
  470. 9.1677436031953307756992753623e+17,
  471. -4.5979888343656503490437943262e+19,
  472. 2.5180471921451095697089023320e+21,
  473. -1.5001733492153928733711440151e+23,
  474. 9.6899578874635940656497942895e+24,
  475. -6.7645882379292820990945242302e+26,
  476. 5.0890659468662289689766332916e+28,
  477. -4.1147288792557978697665486068e+30,
  478. 3.5666582095375556109684574609e+32,
  479. -3.3066089876577576725680214670e+34,
  480. 3.2715634236478716264211227016e+36,
  481. -3.4473782558278053878256455080e+38,
  482. 3.8614279832705258893092720200e+40,
  483. -4.5892974432454332168863989006e+42,
  484. 5.7775386342770431824884825688e+44,
  485. -7.6919858759507135167410075972e+46,
  486. 1.0813635449971654696354033351e+49,
  487. -1.6029364522008965406067102346e+51,
  488. 2.5019479041560462843656661499e+53,
  489. -4.1067052335810212479752045004e+55,
  490. 7.0798774408494580617452972433e+57,
  491. -1.2804546887939508790190849756e+60,
  492. 2.4267340392333524078020892067e+62,
  493. -4.8143218874045769355129570066e+64,
  494. 9.9875574175727530680652777408e+66,
  495. -2.1645634868435185631335136160e+69,
  496. 4.8962327039620553206849224516e+71, /* ... */
  497. -1.1549023923963519663954271692e+74, /* zeta(-97) */
  498. 2.8382249570693706959264156336e+76 /* zeta(-99) */
  499. };
  500. /* coefficients for Maclaurin summation in hzeta()
  501. * B_{2j}/(2j)!
  502. */
  503. static double hzeta_c[15] = {
  504. 1.00000000000000000000000000000,
  505. 0.083333333333333333333333333333,
  506. -0.00138888888888888888888888888889,
  507. 0.000033068783068783068783068783069,
  508. -8.2671957671957671957671957672e-07,
  509. 2.0876756987868098979210090321e-08,
  510. -5.2841901386874931848476822022e-10,
  511. 1.3382536530684678832826980975e-11,
  512. -3.3896802963225828668301953912e-13,
  513. 8.5860620562778445641359054504e-15,
  514. -2.1748686985580618730415164239e-16,
  515. 5.5090028283602295152026526089e-18,
  516. -1.3954464685812523340707686264e-19,
  517. 3.5347070396294674716932299778e-21,
  518. -8.9535174270375468504026113181e-23
  519. };
  520. #define ETA_POS_TABLE_NMAX 100
  521. static double eta_pos_int_table[ETA_POS_TABLE_NMAX+1] = {
  522. 0.50000000000000000000000000000, /* eta(0) */
  523. M_LN2, /* eta(1) */
  524. 0.82246703342411321823620758332, /* ... */
  525. 0.90154267736969571404980362113,
  526. 0.94703282949724591757650323447,
  527. 0.97211977044690930593565514355,
  528. 0.98555109129743510409843924448,
  529. 0.99259381992283028267042571313,
  530. 0.99623300185264789922728926008,
  531. 0.99809429754160533076778303185,
  532. 0.99903950759827156563922184570,
  533. 0.99951714349806075414409417483,
  534. 0.99975768514385819085317967871,
  535. 0.99987854276326511549217499282,
  536. 0.99993917034597971817095419226,
  537. 0.99996955121309923808263293263,
  538. 0.99998476421490610644168277496,
  539. 0.99999237829204101197693787224,
  540. 0.99999618786961011347968922641,
  541. 0.99999809350817167510685649297,
  542. 0.99999904661158152211505084256,
  543. 0.99999952325821554281631666433,
  544. 0.99999976161323082254789720494,
  545. 0.99999988080131843950322382485,
  546. 0.99999994039889239462836140314,
  547. 0.99999997019885696283441513311,
  548. 0.99999998509923199656878766181,
  549. 0.99999999254955048496351585274,
  550. 0.99999999627475340010872752767,
  551. 0.99999999813736941811218674656,
  552. 0.99999999906868228145397862728,
  553. 0.99999999953434033145421751469,
  554. 0.99999999976716989595149082282,
  555. 0.99999999988358485804603047265,
  556. 0.99999999994179239904531592388,
  557. 0.99999999997089618952980952258,
  558. 0.99999999998544809143388476396,
  559. 0.99999999999272404460658475006,
  560. 0.99999999999636202193316875550,
  561. 0.99999999999818101084320873555,
  562. 0.99999999999909050538047887809,
  563. 0.99999999999954525267653087357,
  564. 0.99999999999977262633369589773,
  565. 0.99999999999988631316532476488,
  566. 0.99999999999994315658215465336,
  567. 0.99999999999997157829090808339,
  568. 0.99999999999998578914539762720,
  569. 0.99999999999999289457268000875,
  570. 0.99999999999999644728633373609,
  571. 0.99999999999999822364316477861,
  572. 0.99999999999999911182158169283,
  573. 0.99999999999999955591079061426,
  574. 0.99999999999999977795539522974,
  575. 0.99999999999999988897769758908,
  576. 0.99999999999999994448884878594,
  577. 0.99999999999999997224442439010,
  578. 0.99999999999999998612221219410,
  579. 0.99999999999999999306110609673,
  580. 0.99999999999999999653055304826,
  581. 0.99999999999999999826527652409,
  582. 0.99999999999999999913263826204,
  583. 0.99999999999999999956631913101,
  584. 0.99999999999999999978315956551,
  585. 0.99999999999999999989157978275,
  586. 0.99999999999999999994578989138,
  587. 0.99999999999999999997289494569,
  588. 0.99999999999999999998644747284,
  589. 0.99999999999999999999322373642,
  590. 0.99999999999999999999661186821,
  591. 0.99999999999999999999830593411,
  592. 0.99999999999999999999915296705,
  593. 0.99999999999999999999957648353,
  594. 0.99999999999999999999978824176,
  595. 0.99999999999999999999989412088,
  596. 0.99999999999999999999994706044,
  597. 0.99999999999999999999997353022,
  598. 0.99999999999999999999998676511,
  599. 0.99999999999999999999999338256,
  600. 0.99999999999999999999999669128,
  601. 0.99999999999999999999999834564,
  602. 0.99999999999999999999999917282,
  603. 0.99999999999999999999999958641,
  604. 0.99999999999999999999999979320,
  605. 0.99999999999999999999999989660,
  606. 0.99999999999999999999999994830,
  607. 0.99999999999999999999999997415,
  608. 0.99999999999999999999999998708,
  609. 0.99999999999999999999999999354,
  610. 0.99999999999999999999999999677,
  611. 0.99999999999999999999999999838,
  612. 0.99999999999999999999999999919,
  613. 0.99999999999999999999999999960,
  614. 0.99999999999999999999999999980,
  615. 0.99999999999999999999999999990,
  616. 0.99999999999999999999999999995,
  617. 0.99999999999999999999999999997,
  618. 0.99999999999999999999999999999,
  619. 0.99999999999999999999999999999,
  620. 1.00000000000000000000000000000,
  621. 1.00000000000000000000000000000,
  622. 1.00000000000000000000000000000,
  623. };
  624. #define ETA_NEG_TABLE_NMAX 99
  625. #define ETA_NEG_TABLE_SIZE 50
  626. static double eta_neg_int_table[ETA_NEG_TABLE_SIZE] = {
  627. 0.25000000000000000000000000000, /* eta(-1) */
  628. -0.12500000000000000000000000000, /* eta(-3) */
  629. 0.25000000000000000000000000000, /* ... */
  630. -1.06250000000000000000000000000,
  631. 7.75000000000000000000000000000,
  632. -86.3750000000000000000000000000,
  633. 1365.25000000000000000000000000,
  634. -29049.0312500000000000000000000,
  635. 800572.750000000000000000000000,
  636. -2.7741322625000000000000000000e+7,
  637. 1.1805291302500000000000000000e+9,
  638. -6.0523980051687500000000000000e+10,
  639. 3.6794167785377500000000000000e+12,
  640. -2.6170760990658387500000000000e+14,
  641. 2.1531418140800295250000000000e+16,
  642. -2.0288775575173015930156250000e+18,
  643. 2.1708009902623770590275000000e+20,
  644. -2.6173826968455814932120125000e+22,
  645. 3.5324148876863877826668602500e+24,
  646. -5.3042033406864906641493838981e+26,
  647. 8.8138218364311576767253114668e+28,
  648. -1.6128065107490778547354654864e+31,
  649. 3.2355470001722734208527794569e+33,
  650. -7.0876727476537493198506645215e+35,
  651. 1.6890450341293965779175629389e+38,
  652. -4.3639690731216831157655651358e+40,
  653. 1.2185998827061261322605065672e+43,
  654. -3.6670584803153006180101262324e+45,
  655. 1.1859898526302099104271449748e+48,
  656. -4.1120769493584015047981746438e+50,
  657. 1.5249042436787620309090168687e+53,
  658. -6.0349693196941307074572991901e+55,
  659. 2.5437161764210695823197691519e+58,
  660. -1.1396923802632287851130360170e+61,
  661. 5.4180861064753979196802726455e+63,
  662. -2.7283654799994373847287197104e+66,
  663. 1.4529750514918543238511171663e+69,
  664. -8.1705519371067450079777183386e+71,
  665. 4.8445781606678367790247757259e+74,
  666. -3.0246694206649519336179448018e+77,
  667. 1.9858807961690493054169047970e+80,
  668. -1.3694474620720086994386818232e+83,
  669. 9.9070382984295807826303785989e+85,
  670. -7.5103780796592645925968460677e+88,
  671. 5.9598418264260880840077992227e+91,
  672. -4.9455988887500020399263196307e+94,
  673. 4.2873596927020241277675775935e+97,
  674. -3.8791952037716162900707994047e+100,
  675. 3.6600317773156342245401829308e+103,
  676. -3.5978775704117283875784869570e+106 /* eta(-99) */
  677. };
  678. /*-*-*-*-*-*-*-*-*-*-*-* Functions with Error Codes *-*-*-*-*-*-*-*-*-*-*-*/
  679. int gsl_sf_hzeta_e(const double s, const double q, gsl_sf_result * result)
  680. {
  681. /* CHECK_POINTER(result) */
  682. if(s <= 1.0 || q <= 0.0) {
  683. DOMAIN_ERROR(result);
  684. }
  685. else {
  686. const double max_bits = 54.0;
  687. const double ln_term0 = -s * log(q);
  688. if(ln_term0 < GSL_LOG_DBL_MIN + 1.0) {
  689. UNDERFLOW_ERROR(result);
  690. }
  691. else if(ln_term0 > GSL_LOG_DBL_MAX - 1.0) {
  692. OVERFLOW_ERROR (result);
  693. }
  694. else if((s > max_bits && q < 1.0) || (s > 0.5*max_bits && q < 0.25)) {
  695. result->val = pow(q, -s);
  696. result->err = 2.0 * GSL_DBL_EPSILON * fabs(result->val);
  697. return GSL_SUCCESS;
  698. }
  699. else if(s > 0.5*max_bits && q < 1.0) {
  700. const double p1 = pow(q, -s);
  701. const double p2 = pow(q/(1.0+q), s);
  702. const double p3 = pow(q/(2.0+q), s);
  703. result->val = p1 * (1.0 + p2 + p3);
  704. result->err = GSL_DBL_EPSILON * (0.5*s + 2.0) * fabs(result->val);
  705. return GSL_SUCCESS;
  706. }
  707. else {
  708. /* Euler-Maclaurin summation formula
  709. * [Moshier, p. 400, with several typo corrections]
  710. */
  711. const int jmax = 12;
  712. const int kmax = 10;
  713. int j, k;
  714. const double pmax = pow(kmax + q, -s);
  715. double scp = s;
  716. double pcp = pmax / (kmax + q);
  717. double ans = pmax*((kmax+q)/(s-1.0) + 0.5);
  718. for(k=0; k<kmax; k++) {
  719. ans += pow(k + q, -s);
  720. }
  721. for(j=0; j<=jmax; j++) {
  722. double delta = hzeta_c[j+1] * scp * pcp;
  723. ans += delta;
  724. if(fabs(delta/ans) < 0.5*GSL_DBL_EPSILON) break;
  725. scp *= (s+2*j+1)*(s+2*j+2);
  726. pcp /= (kmax + q)*(kmax + q);
  727. }
  728. result->val = ans;
  729. result->err = 2.0 * (jmax + 1.0) * GSL_DBL_EPSILON * fabs(ans);
  730. return GSL_SUCCESS;
  731. }
  732. }
  733. }
  734. int gsl_sf_zeta_e(const double s, gsl_sf_result * result)
  735. {
  736. /* CHECK_POINTER(result) */
  737. if(s == 1.0) {
  738. DOMAIN_ERROR(result);
  739. }
  740. else if(s >= 0.0) {
  741. return riemann_zeta_sgt0(s, result);
  742. }
  743. else {
  744. /* reflection formula, [Abramowitz+Stegun, 23.2.5] */
  745. gsl_sf_result zeta_one_minus_s;
  746. const int stat_zoms = riemann_zeta1ms_slt0(s, &zeta_one_minus_s);
  747. const double sin_term = (fmod(s,2.0) == 0.0) ? 0.0 : sin(0.5*M_PI*fmod(s,4.0))/M_PI;
  748. if(sin_term == 0.0) {
  749. result->val = 0.0;
  750. result->err = 0.0;
  751. return GSL_SUCCESS;
  752. }
  753. else if(s > -170) {
  754. /* We have to be careful about losing digits
  755. * in calculating pow(2 Pi, s). The gamma
  756. * function is fine because we were careful
  757. * with that implementation.
  758. * We keep an array of (2 Pi)^(10 n).
  759. */
  760. const double twopi_pow[18] = { 1.0,
  761. 9.589560061550901348e+007,
  762. 9.195966217409212684e+015,
  763. 8.818527036583869903e+023,
  764. 8.456579467173150313e+031,
  765. 8.109487671573504384e+039,
  766. 7.776641909496069036e+047,
  767. 7.457457466828644277e+055,
  768. 7.151373628461452286e+063,
  769. 6.857852693272229709e+071,
  770. 6.576379029540265771e+079,
  771. 6.306458169130020789e+087,
  772. 6.047615938853066678e+095,
  773. 5.799397627482402614e+103,
  774. 5.561367186955830005e+111,
  775. 5.333106466365131227e+119,
  776. 5.114214477385391780e+127,
  777. 4.904306689854036836e+135
  778. };
  779. const int n = floor((-s)/10.0);
  780. const double fs = s + 10.0*n;
  781. const double p = pow(2.0*M_PI, fs) / twopi_pow[n];
  782. gsl_sf_result g;
  783. const int stat_g = gsl_sf_gamma_e(1.0-s, &g);
  784. result->val = p * g.val * sin_term * zeta_one_minus_s.val;
  785. result->err = fabs(p * g.val * sin_term) * zeta_one_minus_s.err;
  786. result->err += fabs(p * sin_term * zeta_one_minus_s.val) * g.err;
  787. result->err += GSL_DBL_EPSILON * (fabs(s)+2.0) * fabs(result->val);
  788. return GSL_ERROR_SELECT_2(stat_g, stat_zoms);
  789. }
  790. else {
  791. /* The actual zeta function may or may not
  792. * overflow here. But we have no easy way
  793. * to calculate it when the prefactor(s)
  794. * overflow. Trying to use log's and exp
  795. * is no good because we lose a couple
  796. * digits to the exp error amplification.
  797. * When we gather a little more patience,
  798. * we can implement something here. Until
  799. * then just give up.
  800. */
  801. OVERFLOW_ERROR(result);
  802. }
  803. }
  804. }
  805. int gsl_sf_zeta_int_e(const int n, gsl_sf_result * result)
  806. {
  807. /* CHECK_POINTER(result) */
  808. if(n < 0) {
  809. if(!GSL_IS_ODD(n)) {
  810. result->val = 0.0; /* exactly zero at even negative integers */
  811. result->err = 0.0;
  812. return GSL_SUCCESS;
  813. }
  814. else if(n > -ZETA_NEG_TABLE_NMAX) {
  815. result->val = zeta_neg_int_table[-(n+1)/2];
  816. result->err = 2.0 * GSL_DBL_EPSILON * fabs(result->val);
  817. return GSL_SUCCESS;
  818. }
  819. else {
  820. return gsl_sf_zeta_e((double)n, result);
  821. }
  822. }
  823. else if(n == 1){
  824. DOMAIN_ERROR(result);
  825. }
  826. else if(n <= ZETA_POS_TABLE_NMAX){
  827. result->val = 1.0 + zetam1_pos_int_table[n];
  828. result->err = 2.0 * GSL_DBL_EPSILON * fabs(result->val);
  829. return GSL_SUCCESS;
  830. }
  831. else {
  832. result->val = 1.0;
  833. result->err = GSL_DBL_EPSILON;
  834. return GSL_SUCCESS;
  835. }
  836. }
  837. int gsl_sf_zetam1_e(const double s, gsl_sf_result * result)
  838. {
  839. if(s <= 5.0)
  840. {
  841. int stat = gsl_sf_zeta_e(s, result);
  842. result->val = result->val - 1.0;
  843. return stat;
  844. }
  845. else if(s < 15.0)
  846. {
  847. return riemann_zeta_minus_1_intermediate_s(s, result);
  848. }
  849. else
  850. {
  851. return riemann_zeta_minus1_large_s(s, result);
  852. }
  853. }
  854. int gsl_sf_zetam1_int_e(const int n, gsl_sf_result * result)
  855. {
  856. if(n < 0) {
  857. if(!GSL_IS_ODD(n)) {
  858. result->val = -1.0; /* at even negative integers zetam1 == -1 since zeta is exactly zero */
  859. result->err = 0.0;
  860. return GSL_SUCCESS;
  861. }
  862. else if(n > -ZETA_NEG_TABLE_NMAX) {
  863. result->val = zeta_neg_int_table[-(n+1)/2] - 1.0;
  864. result->err = 2.0 * GSL_DBL_EPSILON * fabs(result->val);
  865. return GSL_SUCCESS;
  866. }
  867. else {
  868. /* could use gsl_sf_zetam1_e here but subtracting 1 makes no difference
  869. for such large values, so go straight to the result */
  870. return gsl_sf_zeta_e((double)n, result);
  871. }
  872. }
  873. else if(n == 1){
  874. DOMAIN_ERROR(result);
  875. }
  876. else if(n <= ZETA_POS_TABLE_NMAX){
  877. result->val = zetam1_pos_int_table[n];
  878. result->err = 2.0 * GSL_DBL_EPSILON * fabs(result->val);
  879. return GSL_SUCCESS;
  880. }
  881. else {
  882. return gsl_sf_zetam1_e(n, result);
  883. }
  884. }
  885. int gsl_sf_eta_int_e(int n, gsl_sf_result * result)
  886. {
  887. if(n > ETA_POS_TABLE_NMAX) {
  888. result->val = 1.0;
  889. result->err = GSL_DBL_EPSILON;
  890. return GSL_SUCCESS;
  891. }
  892. else if(n >= 0) {
  893. result->val = eta_pos_int_table[n];
  894. result->err = 2.0 * GSL_DBL_EPSILON * fabs(result->val);
  895. return GSL_SUCCESS;
  896. }
  897. else {
  898. /* n < 0 */
  899. if(!GSL_IS_ODD(n)) {
  900. /* exactly zero at even negative integers */
  901. result->val = 0.0;
  902. result->err = 0.0;
  903. return GSL_SUCCESS;
  904. }
  905. else if(n > -ETA_NEG_TABLE_NMAX) {
  906. result->val = eta_neg_int_table[-(n+1)/2];
  907. result->err = 2.0 * GSL_DBL_EPSILON * fabs(result->val);
  908. return GSL_SUCCESS;
  909. }
  910. else {
  911. gsl_sf_result z;
  912. gsl_sf_result p;
  913. int stat_z = gsl_sf_zeta_int_e(n, &z);
  914. int stat_p = gsl_sf_exp_e((1.0-n)*M_LN2, &p);
  915. int stat_m = gsl_sf_multiply_e(-p.val, z.val, result);
  916. result->err = fabs(p.err * (M_LN2*(1.0-n)) * z.val) + z.err * fabs(p.val);
  917. result->err += 2.0 * GSL_DBL_EPSILON * fabs(result->val);
  918. return GSL_ERROR_SELECT_3(stat_m, stat_p, stat_z);
  919. }
  920. }
  921. }
  922. int gsl_sf_eta_e(const double s, gsl_sf_result * result)
  923. {
  924. /* CHECK_POINTER(result) */
  925. if(s > 100.0) {
  926. result->val = 1.0;
  927. result->err = GSL_DBL_EPSILON;
  928. return GSL_SUCCESS;
  929. }
  930. else if(fabs(s-1.0) < 10.0*GSL_ROOT5_DBL_EPSILON) {
  931. double del = s-1.0;
  932. double c0 = M_LN2;
  933. double c1 = M_LN2 * (M_EULER - 0.5*M_LN2);
  934. double c2 = -0.0326862962794492996;
  935. double c3 = 0.0015689917054155150;
  936. double c4 = 0.00074987242112047532;
  937. result->val = c0 + del * (c1 + del * (c2 + del * (c3 + del * c4)));
  938. result->err = 2.0 * GSL_DBL_EPSILON * fabs(result->val);
  939. return GSL_SUCCESS;
  940. }
  941. else {
  942. gsl_sf_result z;
  943. gsl_sf_result p;
  944. int stat_z = gsl_sf_zeta_e(s, &z);
  945. int stat_p = gsl_sf_exp_e((1.0-s)*M_LN2, &p);
  946. int stat_m = gsl_sf_multiply_e(1.0-p.val, z.val, result);
  947. result->err = fabs(p.err * (M_LN2*(1.0-s)) * z.val) + z.err * fabs(p.val);
  948. result->err += 2.0 * GSL_DBL_EPSILON * fabs(result->val);
  949. return GSL_ERROR_SELECT_3(stat_m, stat_p, stat_z);
  950. }
  951. }
  952. /*-*-*-*-*-*-*-*-*-* Functions w/ Natural Prototypes *-*-*-*-*-*-*-*-*-*-*/
  953. #include "gsl_specfunc__eval.h"
  954. double gsl_sf_zeta(const double s)
  955. {
  956. EVAL_RESULT(gsl_sf_zeta_e(s, &result));
  957. }
  958. double gsl_sf_hzeta(const double s, const double a)
  959. {
  960. EVAL_RESULT(gsl_sf_hzeta_e(s, a, &result));
  961. }
  962. double gsl_sf_zeta_int(const int s)
  963. {
  964. EVAL_RESULT(gsl_sf_zeta_int_e(s, &result));
  965. }
  966. double gsl_sf_zetam1(const double s)
  967. {
  968. EVAL_RESULT(gsl_sf_zetam1_e(s, &result));
  969. }
  970. double gsl_sf_zetam1_int(const int s)
  971. {
  972. EVAL_RESULT(gsl_sf_zetam1_int_e(s, &result));
  973. }
  974. double gsl_sf_eta_int(const int s)
  975. {
  976. EVAL_RESULT(gsl_sf_eta_int_e(s, &result));
  977. }
  978. double gsl_sf_eta(const double s)
  979. {
  980. EVAL_RESULT(gsl_sf_eta_e(s, &result));
  981. }