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!)
A178421 Lower primes p1 in a twin pair such that sum of p1 and p2 yields average a1 of twin prime pairs and product of 2*a1 is another average of twin prime pairs. 4

%I #15 Nov 02 2023 07:50:29

%S 211049,248639,253679,410339,507359,605639,1121189,1138829,1262099,

%T 2162579,2172869,2277659,4070219,6305459,7671509,11659409,12577109,

%U 14203769,14862119,17472839,18728639,18798359,20520569,21140699

%N Lower primes p1 in a twin pair such that sum of p1 and p2 yields average a1 of twin prime pairs and product of 2*a1 is another average of twin prime pairs.

%C The definition means that a1/2, a1 and 2*a1 are all in A014574 (twin prime averages). - _R. J. Mathar_, Nov 02 2023

%H Amiram Eldar, <a href="/A178421/b178421.txt">Table of n, a(n) for n = 1..10000</a>

%F a(n) = A069175(n)-1. - _R. J. Mathar_, Nov 02 2023

%e 211049 is a term since 211049 and 211051 are twin primes; 211049 + 211051 = 422100 is an average of twin primes, and 2*422100 = 844200 is another average of twin primes.

%t lst={};Do[p1=Prime[n];p2=Prime[n+1];a1=p1+p2;a2=2*a1;If[p2-p1==2&&PrimeQ[a1-1]&&PrimeQ[a1+1]&&PrimeQ[a2-1]&&PrimeQ[a2+1],AppendTo[lst,p1]],{n,10!}];lst

%t atpQ[{a_,b_}]:=Module[{m=a+b},b-a==2&&AllTrue[m+{1,-1},PrimeQ] && AllTrue[ 2m+{1,-1},PrimeQ]]; Select[Partition[Prime[Range[134*10^4]],2,1],atpQ][[All,1]] (* Requires Mathematica version 10 or later *) (* _Harvey P. Dale_, Aug 28 2019 *)

%Y Cf. A069175, A014574, A069142, A099349.

%K nonn

%O 1,1

%A _Vladimir Joseph Stephan Orlovsky_, May 27 2010

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 18 23:41 EDT 2024. Contains 375284 sequences. (Running on oeis4.)