1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
use num::complex::Complex;
use crate::cln::CLn;
use crate::{Li0, Li1, Li2, Li3, Li4};
use super::eta::neg_eta;
use super::fac::{fac, inv_fac};
use super::harmonic::harmonic;
use super::zeta::zeta;
pub fn rli(n: i32, x: f64) -> f64 {
let odd_sgn = |n| if is_even(n) { -1.0 } else { 1.0 };
if x == 0.0 {
0.0
} else if x == 1.0 {
zeta(n)
} else if x == -1.0 {
neg_eta(n)
} else if x.is_nan() {
std::f64::NAN
} else if n < -1 {
let x = x;
let c = 4.0*std::f64::consts::PI*std::f64::consts::PI;
let l2 = ln_sqr(x);
if c*x*x < l2 {
li_series(n, x)
} else if l2 < 0.512*0.512*c {
li_unity_neg(n, Complex::new(x, 0.0)).re
} else {
odd_sgn(n)*li_series(n, x.recip())
}
} else if n == -1 {
x/((1.0 - x)*(1.0 - x))
} else if n == 0 {
x.li0()
} else if n == 1 {
x.li1()
} else if n == 2 {
x.li2()
} else if n == 3 {
x.li3()
} else if n == 4 {
x.li4()
} else {
let (y, rest, sgn) = if x < -1.0 {
(x.recip(), li_neg_rest(n, x), odd_sgn(n))
} else if x < 1.0 {
(x, 0.0, 1.0)
} else {
(x.recip(), li_pos_rest(n, x), odd_sgn(n))
};
let li = if n < 20 && y > 0.75 {
li_unity_pos(n, y)
} else {
li_series(n, y)
};
rest + sgn*li
}
}
fn is_even(x: i32) -> bool {
x & 1 == 0
}
fn ln_sqr(x: f64) -> f64 {
if x < 0.0 {
let l = (-x).ln();
l*l + std::f64::consts::PI*std::f64::consts::PI
} else if x == 0.0 {
std::f64::NAN
} else {
let l = x.ln();
l*l
}
}
fn li_neg_rest(n: i32, x: f64) -> f64 {
let l = (-x).ln();
let l2 = l*l;
if is_even(n) {
let mut sum = 0.0;
let mut p = 1.0;
for u in 0..n/2 {
let old_sum = sum;
sum += p*inv_fac(2*u)*neg_eta(n - 2*u);
if sum == old_sum { break; }
p *= l2;
}
2.0*sum - p*inv_fac(n)
} else {
let mut sum = 0.0;
let mut p = l;
for u in 0..(n - 1)/2 {
let old_sum = sum;
sum += p*inv_fac(2*u + 1)*neg_eta(n - 1 - 2*u);
if sum == old_sum { break; }
p *= l2;
}
2.0*sum - p*inv_fac(n)
}
}
fn next_cosi((sn, cn): (f64, f64), (s2, c2): (f64, f64)) -> (f64, f64) {
(sn*c2 + cn*s2, cn*c2 - sn*s2)
}
fn li_pos_rest(n: i32, x: f64) -> f64 {
let pi = std::f64::consts::PI;
let l = x.ln();
let mag = l.hypot(pi);
let arg = pi.atan2(l);
let l2 = mag*mag;
if is_even(n) {
let mut sum = 0.0;
let mut p = 1.0;
let mut cosi = (0.0, 1.0);
let cosi2 = (2.0*arg).sin_cos();
for u in 0..n/2 {
let old_sum = sum;
sum += p*cosi.1*inv_fac(2*u)*neg_eta(n - 2*u);
if sum == old_sum { break; }
p *= l2;
cosi = next_cosi(cosi, cosi2);
}
2.0*sum - p*cosi.1*inv_fac(n)
} else {
let mut sum = 0.0;
let mut p = mag;
let (s, c) = arg.sin_cos();
let mut cosi = (s, c);
let cosi2 = (2.0*s*c, 2.0*c*c - 1.0);
for u in 0..(n - 1)/2 {
let old_sum = sum;
sum += p*cosi.1*inv_fac(2*u + 1)*neg_eta(n - 1 - 2*u);
if sum == old_sum { break; }
p *= l2;
cosi = next_cosi(cosi, cosi2);
}
2.0*sum - p*cosi.1*inv_fac(n)
}
}
fn li_unity_pos(n: i32, x: f64) -> f64 {
let l = x.ln();
let mut sum = zeta(n);
let mut p = 1.0;
for j in 1..(n - 1) {
p *= l/(j as f64);
sum += zeta(n - j)*p;
}
p *= l/((n - 1) as f64);
sum += (harmonic(n - 1) - (-l).ln())*p;
p *= l/(n as f64);
sum += zeta(0)*p;
p *= l/((n + 1) as f64);
sum += zeta(-1)*p;
let l2 = l*l;
for j in ((n + 3)..i32::MAX).step_by(2) {
p *= l2/(((j - 1)*j) as f64);
let old_sum = sum;
sum += zeta(n - j)*p;
if sum == old_sum { break; }
}
sum
}
fn li_unity_neg(n: i32, z: Complex<f64>) -> Complex<f64> {
let lnz = z.cln();
let lnz2 = lnz*lnz;
let mut sum = fac(-n)*(-lnz).powi(n - 1);
let (mut k, mut lnzk) = if is_even(n) {
(1, lnz)
} else {
sum += zeta(n);
(2, lnz2)
};
loop {
let term = zeta(n - k)*inv_fac(k)*lnzk;
if !term.is_finite() { break; }
let sum_old = sum;
sum += term;
if sum == sum_old || k >= i32::MAX - 2 { break; }
lnzk *= lnz2;
k += 2;
}
sum
}
fn li_series(n: i32, x: f64) -> f64
{
let mut sum = x;
let mut xn = x*x;
for k in 2..i32::MAX {
let term = xn/(k as f64).powi(n);
if !term.is_finite() { break; }
let old_sum = sum;
sum += term;
if sum == old_sum { break; }
xn *= x;
}
sum
}