login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A270992 Number of distinct prime divisors of prime(n)+1 and prime(n+1)+1. 2

%I #13 Jun 11 2017 18:16:30

%S 0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,2,1,2,

%T 1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,

%U 1,1,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,1,1,1,1,2,2,1,1,1,1

%N Number of distinct prime divisors of prime(n)+1 and prime(n+1)+1.

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

%e For n=1, p=2 and q=3; 3 and 4 have no common prime divisor, so a(1)=0.

%e For n=2, p=3 and q=5; 4 and 6 have 1 common prime divisor, so a(2)=1.

%e For n=9, p=23 and q=29; 24 and 30 have 2 common prime divisors, so a(9)=2.

%t Table[Length[Map[First, FactorInteger[GCD @@ {Prime@ n + 1, Prime[n + 1] + 1}]] /. 1 -> Nothing], {n, 101}] (* _Michael De Vlieger_, Mar 28 2016 *)

%t Length[Intersection[FactorInteger[#[[1]]+1][[All,1]],FactorInteger[#[[2]] + 1][[All,1]]]]&/@Partition[Prime[Range[120]],2,1] (* _Harvey P. Dale_, Jun 11 2017 *)

%o (PARI) lista(nn) = {p = 2; f = factor(p+1)[,1]~; forprime(q=3, nn, g = factor(q+1)[,1]~; print1(#setintersect(f, g), ", "); p = q; f = g;);}

%o (PARI) a(n) = my(p = prime(n), q = nextprime(p+1)); #setintersect(factor(p+1)[,1]~, factor(q+1)[,1]~);

%Y Cf. A008335, A270592 (records).

%K nonn

%O 1,9

%A _Michel Marcus_, Mar 28 2016

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 18 21:47 EDT 2024. Contains 376002 sequences. (Running on oeis4.)