OFFSET
-1,1
COMMENTS
The alternating series of reciprocal powers of prime numbers converges for any x > 0 (absolutely so if x > 1) but is hard to compute.
The next digits of C(3), after ...91124, seem to converge to a(20)=9, a(21)=0.
LINKS
Stanislav Sykora, PARI/GP scripts for primes-related functions, see function AltSum1DivPrimePwr(x,eps), with instruction.
EXAMPLE
0.0934636313996498891124...
MATHEMATICA
next = 0; ndigits = 11; epsilon = 10^-(2 ndigits); k = 1;
While[test = 1/Prime[k + 1]^3 - 1/Prime[k]^3; -test > epsilon,
next = next + test; k += 2];
First[RealDigits[-next, 10, ndigits]] (* Robert Price, Sep 07 2019 *)
PROG
(PARI) See Sykora link.
CROSSREFS
KEYWORD
AUTHOR
Stanislav Sykora, May 14 2014
STATUS
approved