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!)
A075784 Numbers n such that sopf(n) = sopf(n-1) + sopf(n-2) + sopf(n-3), where sopf(x) = sum of the distinct prime factors of x. 8
23156, 59785, 72521, 98426, 362231, 480223, 506123, 1049790, 1077252, 1133953, 1202068, 1277411, 1327229, 1627040, 2200058, 2317712, 2368026, 3610497, 4174012, 5668196, 6302128, 6324778, 6946075, 7179599, 7786163, 8053816 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
The sum of the distinct prime factors of 23156 is 2 + 7 + 827 = 836; the sum of the distinct prime factors of 23155 is 5 + 11 + 421 = 437; the sum of the distinct prime factors of 23154 is 2 + 3 + 17 + 227 = 249; the sum of the distinct prime factors of 23153 is 13 + 137 = 150; and 836 = 437 + 249 + 150. Hence 23156 belongs to the sequence.
MATHEMATICA
p[n_] := Apply[Plus, Transpose[FactorInteger[n]][[1]]]; Select[Range[5, 10^5], p[ # - 1] + p[ # - 2] + p[ # - 3] == p[ # ] &]
Flatten[Position[Partition[Table[Total[FactorInteger[n][[All, 1]]], {n, 8054000}], 4, 1], _?(Total[Most[#]]==Last[#]&)]//Quiet]+3 (* _Harvey P. Dale_, Feb 22 2020 *)
CROSSREFS
Sequence in context: A230791 A087425 A031648 * A126301 A205176 A205275
KEYWORD
nonn
AUTHOR
_Joseph L. Pe_, Oct 18 2002
EXTENSIONS
Edited and extended by _Ray Chandler_, Feb 13 2005
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 5 14:41 EDT 2024. Contains 372275 sequences. (Running on oeis4.)