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!)
A086168 a(n) = sum of the first n upper twin primes. 4
5, 12, 25, 44, 75, 118, 179, 252, 355, 464, 603, 754, 935, 1128, 1327, 1556, 1797, 2068, 2351, 2664, 3013, 3434, 3867, 4330, 4853, 5424, 6025, 6644, 7287, 7948, 8759, 9582, 10411, 11270, 12153, 13174, 14207, 15258, 16321, 17414, 18567 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
For n = 4 we have twin prime pairs (3,5) (5,7) (11,13) (17,19) and 5 + 7 + 13 + 19 = 44.
MATHEMATICA
lst={}; s=0; Do[p=Prime[n]; If[PrimeQ[p-2], s+=p; AppendTo[lst, s]], {n, 6!}]; lst (* Vladimir Joseph Stephan Orlovsky, Sep 30 2008 *)
Accumulate[Transpose[Select[Partition[Prime[Range[200]], 2, 1], Last[#]-First[#]==2&]][[2]]] (* Harvey P. Dale, Feb 08 2011 *)
PROG
(PARI) addnexttwin(n)= { s=0; for(x=1, n, if(prime(x+1)-prime(x)==2, s=s+prime(x+1); print1(s", ")) ) }
CROSSREFS
Sequence in context: A212058 A303854 A331714 * A301748 A108201 A289586
KEYWORD
nonn
AUTHOR
Cino Hilliard, Aug 25 2003
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 26 10:21 EDT 2024. Contains 371994 sequences. (Running on oeis4.)