A078092 Duplicate of A076137.
4, 32, 64, 96, 144, 180, 216, 224, 240, 360, 400, 432, 576, 600, 648, 672, 800, 972
Offset: 1
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
E.g. Omega(3) = 1 + 0 = Omega(2) + Omega(1). Omega(4) = 1 + 1 = Omega(3) + Omega(2). 8 is a term because Omega(8)=3=Omega(7)+Omega(6)=1+2=3
Omega[n_] := Apply[Plus, Transpose[FactorInteger[n]][[2]]]; l = {3}; Do[If[Omega[n] == Omega[n - 1] + Omega[n - 2], l = Append[l, n]], {n, 4, 1000}]; l Flatten[Position[Partition[PrimeOmega[Range[700]],3,1],?(#[[1]]+#[[2]]==#[[3]]&),1,Heads->False]]+2 (* _Harvey P. Dale, Aug 24 2019 *)
j=[]; for(n=1,1000,if(bigomega(n)==bigomega(n-1)+bigomega(n-2),j=concat(j,n))); j