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!)
A077617 Numbers k such that Omega(k) = Omega(k+1) + Omega(k+2). 1
12, 16, 24, 40, 45, 48, 56, 84, 100, 105, 132, 136, 140, 165, 168, 189, 204, 210, 224, 228, 261, 264, 272, 297, 315, 330, 345, 357, 372, 378, 380, 405, 441, 444, 450, 464, 465, 468, 477, 496, 513, 520, 522, 525, 536, 544, 546, 561, 564, 567, 588, 608, 621 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Omega(n) denotes the number of prime factors of n, counting multiplicity.
LINKS
EXAMPLE
a(2) = 16 is a term because Omega(16) = 4 = Omega(17) + Omega(18) = 1 + 3 = 4.
MATHEMATICA
Select[Range[1, 1000], PrimeOmega[#] == PrimeOmega[# + 1] + PrimeOmega[# + 2] &] (* Vaclav Kotesovec, Feb 13 2019 *)
Position[Partition[PrimeOmega[Range[700]], 3, 1], _?(#[[1]]==#[[2]]+#[[3]] &), 1, Heads->False]//Flatten (* Harvey P. Dale, Aug 18 2019 *)
PROG
(PARI) j=[]; for(n=1, 1000, if(bigomega(n)==bigomega(n+1)+bigomega(n+2), j=concat(j, n))); j
(Magma) f:=func<n|&+[p[2]: p in Factorization(n)]>; [k:k in [2..650]| f(k) eq f(k+1)+ f(k+2)]; // Marius A. Burtea, Feb 19 2020
CROSSREFS
Sequence in context: A335244 A330546 A189763 * A182074 A192609 A157678
KEYWORD
nonn
AUTHOR
Shyam Sunder Gupta, Dec 01 2002
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 30 12:02 EDT 2024. Contains 372968 sequences. (Running on oeis4.)