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!)
A367075 a(n) is the least semiprime that is the first of n consecutive semiprimes s(1) ... s(n) such that s(i) - prime(i) are all equal. 0
4, 9, 118, 514, 1202, 9662, 46418, 198878, 273386, 717818, 717818, 270893786, 1009201118, 1009201118, 68668578806, 421210555538, 421210555538, 81550619289662, 645040014922382, 645040014922382, 645040014922382 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
a(3) = 118 because 118, 119, 121 are consecutive semiprimes with 118 - 2 = 119 - 3 = 121 - 5 = 116, and this is the first semiprime that works.
MAPLE
P:= select(isprime, [2, seq(i, i=3..10^6, 2)]):
SP:= select(t -> numtheory:-bigomega(t)=2, [$4..10^7]):
nSP:= nops(SP);
t:= 1: k0:= 1: R:= 4: tmax:= 1: d:= 2:
for k from 2 to nSP do
if SP[k]-P[k-k0+1] = d then
t:= t+1;
if t > tmax then R:= R, SP[k0]; tmax:= t; fi;
else
t:= 1; k0:= k; d:= SP[k] - 2;
fi
od:
R;
CROSSREFS
All terms are in A001358 and (except for the initial term 4) A070552.
Sequence in context: A324024 A042381 A230743 * A033294 A156317 A115676
KEYWORD
nonn,more
AUTHOR
Robert Israel, Nov 05 2023
EXTENSIONS
a(12) from David A. Corneth, Nov 05 2023
a(13)-a(15) from Daniel Suteu, Nov 18 2023
a(16)-a(18) from Martin Ehrenstein, Dec 01 2023
a(19)-a(21) from Martin Ehrenstein, Dec 03 2023
STATUS
approved

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 2 09:06 EDT 2024. Contains 372178 sequences. (Running on oeis4.)