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!)
A075675 Sum of next n even interprimes. 3
4, 18, 74, 182, 358, 746, 1176, 1854, 2650, 3870, 5696, 7358, 9818, 13052, 16134, 19742, 24192, 30048, 36306, 42932, 50954, 59904, 70210, 82646, 93446, 105640, 117558, 131950, 148108, 165772 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Sum of next n primes in A007468. Sum of next n integer interprimes in A075673. Sum of next n odd interprimes in A075674.
LINKS
EXAMPLE
a(1) = (3+5)/2 = 4; a(2) = (5+7)/2+(11+13)/2 = 6 + 12 = 18.
MATHEMATICA
ev=Select[Table[(Prime[i]+Prime[i+1])/2, {i, 2, 2000}], EvenQ]; (* sum of next n even interprimes*) i1 := n(n-1)/2+1; i2 := n(n-1)/2+n; A075675=Table[Sum[ev[[i]], {i, i1, i2}], {n, 30}]
Module[{nn=1000, ip, len}, ip=Select[Mean/@Partition[Prime[Range[nn]], 2, 1], EvenQ]; len=Length[ip]; Total/@TakeList[ip, Range[(Sqrt[1+8*len]-1)/2]]] (* Requires Mathematica version 11 or later *) (* Harvey P. Dale, Jun 30 2020 *)
CROSSREFS
Sequence in context: A027905 A037497 A202358 * A047034 A266753 A307323
KEYWORD
nonn
AUTHOR
Zak Seidov, Sep 24 2002
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 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)