login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Least m>p such that p|m, p+1|m+1 and p+2|m+2, for twin prime pairs (p, p+2), p in A001359.
1

%I #9 May 17 2018 05:31:30

%S 63,215,1727,5831,26999,74087,215999,373247,1061207,1259711,2628071,

%T 3374999,5831999,7077887,7762391,11852351,13823999,19682999,22425767,

%U 30371327,42144191,74087999,80621567,98611127,142236647,185192999

%N Least m>p such that p|m, p+1|m+1 and p+2|m+2, for twin prime pairs (p, p+2), p in A001359.

%H Robert Israel, <a href="/A097973/b097973.txt">Table of n, a(n) for n = 1..10000</a>

%F a(n) = p*(p+1)*(p+2) + p = (p+1)^3 - 1 (p=A001359, p+1=A014574).

%e The triple {a(6), a(6)+1, a(6)+2}, for instance, i.e., (74087=41*1807, 74088=42*1764, 74089=43*1723) is the smallest one whose elements are respectively divisible by those of (41, 42, 43), (41, 43) being the 6th twin prime pair.

%p map(t -> (t+1)^3-1, select(t -> isprime(t) and isprime(t+2), [3,seq(i,i=5..10^4,6)])); # _Robert Israel_, May 16 2018

%K nonn

%O 1,1

%A _Lekraj Beedassy_, Sep 07 2004