The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A082603 a(n) is the first prime greater than a(n-1) such that a(n)*a(n-1)+2 is a prime, with a(1)=3. 1

%I #17 May 31 2021 16:05:32

%S 3,5,7,11,19,23,37,47,73,227,241,251,271,317,367,563,607,641,727,761,

%T 829,1091,1117,1223,1249,1451,1579,1601,1627,1721,1741,1787,1873,1877,

%U 1933,1973,2017,2087,2137,2153,2287,2351,2521,2687,2707,2741,2851,3041,3121,3137,3181,3191,3361,3371,3457,3461,3541,3557,3607,3701,3877,3881,3907,3947

%N a(n) is the first prime greater than a(n-1) such that a(n)*a(n-1)+2 is a prime, with a(1)=3.

%H Harvey P. Dale, <a href="/A082603/b082603.txt">Table of n, a(n) for n = 1..1000</a>

%e a(3)=7, as 3 + 2 = 5, 3*5 + 2 = 17, 5*7 + 2 = 37, etc.

%t f[s_List] := Block[{p = pp = s[[-1]]}, While[p = NextPrime@p; !PrimeQ[ p*pp + 2],]; Append[s, p]]; Nest[f, {3}, 63] (* _Robert G. Wilson v_, Nov 08 2010 *)

%t fpg[p1_]:=Module[{p2=NextPrime[p1]},While[!PrimeQ[p1 p2+2],p2=NextPrime[ p2]];p2]; NestList[fpg,3,70] (* _Harvey P. Dale_, May 31 2021 *)

%o (PARI) { vp=vector(20); vp[1]=3; vc=1; vpt=3; print1(3","); for (vc=2,20, forprime (p=vp[vc-1]+1,10000, if (isprime(p*vp[vc-1]+2),vp[vc]=p;vpt*=p; print1(vp[vc]","); break))) }

%o (PARI) {v=3;print1(3",");forprime(p=5,10000,vp=v*p;if(isprime(vp+2),v=vp;print1(p",")))} \\ _Zak Seidov_, Nov 07 2010

%Y Cf. A039726, A082603, A096177.

%K easy,nonn

%O 1,1

%A _Jon Perry_, May 23 2003

%E Definition and example corrected to match the sequence and PARI programming, two cross references added, and sequence extended by _Robert G. Wilson v_, Nov 08 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 May 12 17:17 EDT 2024. Contains 372492 sequences. (Running on oeis4.)