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!)
A358438 a(1) = 4, a(2) = 6; then a(n + 1) is the smallest semiprime number > a(n) such that the sum of any three consecutive terms is a semiprime. 1
4, 6, 15, 25, 34, 35, 46, 62, 69, 74, 94, 106, 119, 121, 122, 134, 142, 146, 158, 169, 178, 206, 213, 214, 235, 249, 253, 265, 267, 299, 303, 319, 321, 334, 382, 395, 422, 445, 446, 454, 466, 469, 482, 514, 517, 538, 586, 589, 591, 623, 629 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Do even numbers thin out as you look at larger and larger numbers of terms? - Charles R Greathouse IV, Nov 18 2022
LINKS
EXAMPLE
4 + 6 + 15 = 25 = 5*5, 6 + 15 + 25 = 46 = 2*23.
MAPLE
R:= 4, 6:
for i from 3 to 100 do
s:= R[i-2]+R[i-1];
for t from R[i-1]+1 do
if numtheory:-bigomega(t) = 2 and numtheory:-bigomega(s+t)=2 then
R:= R, t; break
fi
od od:
R; # Robert Israel, Nov 18 2022
MATHEMATICA
s = {4, 6}; p = 4; q = 6; r = q + 1; Do[While[2 != PrimeOmega[r] || 2 != PrimeOmega[p + q + r], r++]; AppendTo[s, r]; p = q; q = r; r++, {100}]; s
CROSSREFS
Cf. A062391 (analog for primes), A001358 (semiprimes).
Sequence in context: A369437 A027631 A128620 * A045907 A254325 A351145
KEYWORD
nonn
AUTHOR
Zak Seidov, Nov 17 2022
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 15 20:14 EDT 2024. Contains 372549 sequences. (Running on oeis4.)