Svoboda | Graniru | BBC Russia | Golosameriki | Facebook
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!)
A152127 Sum of cousin primes < 10^n. 2
28, 766, 34522, 1706602, 107863996, 7379208796, 542100094312, 41248685420836, 3233516261489332, 260607555289408894, 21446383929686290726, 1795656778320649469818, 152541729206365604807782 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Cousin primes are prime pairs that differ by 4. The convention here is to count a cousin pair as long as the first cousin of the pair is less than or equal to the specified bound which in this sequence is 10^n.
"According to the first Hardy-Littlewood conjecture, the cousin primes have the same asymptotic density as the twin primes." See the MathWorld link. The (sum of cousin prime pairs < 10^n)/4 ~ number of cousin primes < 10^2n.
LINKS
Cino Hilliard, Gcc Sum of cousin primes. [broken link]
Eric Weisstein's World of Mathematics, Cousin Primes.
EXAMPLE
(3,7) and (7,11) are the cousin primes < 10. These add up to 28 the first entry in the sequence.
PROG
(PARI) lista(pmax) = {my(sm = 10, prev = 2, pow = 10); forprime(p = 3, pmax, if(p == prev + 4, sm += (prev + p)); if(p > pow, print1(sm, ", "); pow *= 10); prev = p); } \\ Amiram Eldar, Jul 06 2024
CROSSREFS
Sequence in context: A170709 A170747 A218730 * A113532 A158545 A291997
KEYWORD
nonn,more
AUTHOR
Cino Hilliard, Nov 25 2008
EXTENSIONS
Data corrected by Amiram Eldar, Jul 06 2024
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 August 16 23:15 EDT 2024. Contains 375195 sequences. (Running on oeis4.)