login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A253357 Decimal expansion of Sum_{n>=1} prime(n)/n^4. 2
2, 3, 3, 7, 6, 3, 5, 3, 2, 9, 7, 4 (list; constant; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Since prime(n) ~ n*log(n), Sum_{n >=1} prime(n)/n^j converges only when j > 2.
The partial sum over n <= 100000 is 2.33763532906803560, over n <= 1000000 is 2.337635329736982..., over n <= 5000000 is 2.3376353297446376... and over n <= 10000000 is 2.33763532974490000... - R. J. Mathar, Nov 05 2015
LINKS
Olivier Izad, Java program
EXAMPLE
2.3376353297449...
The first few iterations of the sum are:
n=1, 2/1^4 = 2;
n=2, 2 + 3/2^4 = 2.1875;
n=3, 2 + 3/2^4 + 5/3^4 = 2.249...
MATHEMATICA
s = 0; k = 1; p = 2; While[k < 100000001, s = N[s + p/k^4, 24]; k++; p = NextPrime@ p]; s (* Robert G. Wilson v, Jan 27 2015 *)
PROG
(bash)
awk 'BEGIN{n=1}; {sum=sum+$1/(n^4); n++; OFMT="%.50f"; print sum}' primes.txt
(Java) See attachment
(PARI) suminf(n=1, prime(n)/n^4) \\ Michel Marcus, Jan 10 2015
CROSSREFS
Cf. A253358 (sum over prime(n)/n^3).
Sequence in context: A228548 A140407 A063670 * A185909 A347533 A193713
KEYWORD
nonn,cons,more
AUTHOR
Olivier Izad, Dec 30 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 04:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)