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!)
A129951 Sum of characteristic function of twin primes < 10^n. 0
2, 5, -30, -411, -4698, -45824, -428661, -4000209, -37149512, -345401797, -3220550623, -30125571140, -282726877353, -2661820464144, -25135733453455, -238021558244735, -2259761800241599, -21505250733431118 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
Let t(m) = 1 if m is a twin prime member, -1 if isolated prime or 0 if not prime. Then a(n) = Sum_{k=1..10^n} t(k). [Corrected by Amiram Eldar, Jun 30 2024]
a(n) = 4*A007508(n) - A006880(n) - 2. - Amiram Eldar, Jun 30 2024
PROG
(PARI) istwin(n) = local(p1, p2); if(n==5, return(2)); if(isprime(n), p1=n-2; p2=n+2; if(isprime(p1), return(1)); if(isprime(p2), return(-1)); return(0));
t(n) = if(abs(istwin(n))==1||n==5, 1, if(isprime(n), -1, 0));
for(j=1, 10, print1(sum(x=1, 10^j, t(x))", "));
CROSSREFS
Sequence in context: A366455 A140786 A369726 * A127298 A275255 A219273
KEYWORD
sign,more
AUTHOR
Cino Hilliard, Jun 10 2007
EXTENSIONS
a(8)-a(18) from Amiram Eldar, Jun 30 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 July 31 14:41 EDT 2024. Contains 374801 sequences. (Running on oeis4.)