login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A118493 Sum of the components of twin prime pairs less than the 10^nth prime. 0
80, 9656, 1170176, 118548908, 12196296524, 1233811181036, 124289829648164, 12535736299783460, 1261003658138370872, 126670338265079023748, 12714730302282303009284 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

COMMENTS

The known ratios of successive terms a(n)/a(n-1) are as follows. n a(n)/a(n-1) 2 120.70000... 3 121.18641... 4 101.30861... 5 102.87987... 6 101.16277... 7 100.73651... 8 100.85890... 9 100.59270... 10 100.45199... Heuristically, There appears to be a convergence. The PARI program computes the first 8 terms in a reasonable time. The 9th and 10th terms were computed by the program in the first link in 4,700 and 50,500 seconds respectively on a p4 2.53 ghz xp pro system.

LINKS

Cino Hilliard, Program that can read a 115 gig file of the first 14.4 billion primes using win32api ReadFile().

Cino Hilliard, Power Basic program dll functions to read large files and some prime and twin prime routines.

EXAMPLE

For n=1 10^n = 10. The 10th prime is 29. The 4 twin prime pairs less than 29

are (3,5),(5,7),(11,13),(17,19). These add up to 80, which is the first term in

the sequence.

PROG

(PARI) sumtwins3(n) =\Using prime2() which reads primes2-370bill.bin using PB DLL { local(x, j, s, sr, p10x); sr=0; for(x=1, n, s=0; p10x = prime2(10^x); forstep(j=3, p10x, 2, if(ispseudoprime(j) & ispseudoprime(j+2) & j+2 <= p10x, s+=j+j+2); ); print1(s", "); sr+=1./s; ); print(); print(sr) } prime2(n) = \The n-th prime using prime.exe calling prime2-370bill.bin { local(x, s); s=concat("f:/sieve/prime ", Str(n)); s=concat(s, " > temp.txt"); \Must save to a temp file for output system(s); return(read("temp.txt")) }

CROSSREFS

Sequence in context: A116252 A159734 A091754 * A187052 A159377 A183582

Adjacent sequences:  A118490 A118491 A118492 * A118494 A118495 A118496

KEYWORD

hard,more,nonn

AUTHOR

Cino Hilliard (hillcino368(AT)gmail.com), May 05 2006

EXTENSIONS

a(11) from Giovanni Resta (g.resta(AT)iit.cnr.it), May 09 2006

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 23:16 EST 2012. Contains 205687 sequences.