A328498 Decimal expansion of Sum_{(p, q) runs through the twin primes} ((p mod 4) - 2) * (1/p + 1/q).
1, 8, 3, 5, 0, 0, 3, 8
Offset: 0
Examples
(1/3 + 1/5) - (1/5 + 1/7) + (1/11 + 1/13) - (1/17 + 1/19) - (1/29 + 1/31) + ... = 0.183500386... +- 0.000000002
Programs
-
PARI
my(p = 3, s = 0.0); forprime(n = 5, 10^16, if(n-p == 2, if(p%4 == 3, s+= 1/p + 1/n, s+= -1/p - 1/n)); p = n); s
Comments