This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A038345 #19 Apr 27 2018 21:08:20 %S A038345 3,12,41,120,307,696,1241,1956,3307,5544,8381,12042,16237,21492,27677, %T A038345 33906,42733,54180,65057,76740,88771,104112,124229,146490,169933, %U A038345 196884,230807,263790,297475,339372,385349,441900,496375,557628,617357,672510,743917,807888 %N A038345 Sum of the next n members of the list of twin primes. %C A038345 Observation: a(26) is also equal to A000521(1) = 196884. - _Omar E. Pol_, Nov 29 2014 %e A038345 a(1) = 3, a(2) = 5+7 = 12, a(3) = 11+13+17 = 41, ... %e A038345 a(26) = 7211+7213+7307+7309+7331+7333+7349+7351+7457+7459+7487+7489+7547+7549+7559+ 7561+7589+7591+7757+7759+7877+7879+7949+7951+8009+8011 = 196884. - _Omar E. Pol_, Nov 29 2014 %t A038345 With[{nn=100},Total/@TakeList[Union[Flatten[Select[ Partition[Prime[ Range[ 300nn]],2,1],#[[2]]-#[[1]]==2&]]],Range[nn]]] (* Requires Mathematica version 11 or later *) (* _Harvey P. Dale_, Apr 27 2018 *) %o A038345 (PARI) isA001097(n) = (isprime(n) && (isprime(n+2) || isprime(n-2))) ; %o A038345 lista(nn) = {v = select(x->isA001097(x), vector(nn, i, i)); idep = 1; for (n=1, sqrtint(#v), print1(sum(i=idep, idep+n-1, v[i]), ", "); idep += n;);} \\ _Michel Marcus_, Nov 29 2014 %Y A038345 Cf. A001097 (twin primes), A007468 (sum of next n primes), A000521. %K A038345 easy,nonn %O A038345 1,1 %A A038345 Den Roussel (DenRoussel(AT)webtv.net) %E A038345 More terms from _Michel Marcus_, Nov 29 2014