OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
14 + sum of prime factors of 14 = 14 + 2 + 7 = 23; 15 + sum of prime factors of 15 = 15 + 3 + 5 = 23; hence 14 belongs to the sequence.
MATHEMATICA
s[n_] := n + Apply[Plus, Transpose[FactorInteger[n]][[1]]]; Select[Range[2, 10^5], s[ # ] == s[ # + 1] &]
SequencePosition[Table[n+Total[FactorInteger[n][[All, 1]]], {n, 70000}], {x_, x_}][[All, 1]] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Jun 23 2017 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Joseph L. Pe, Oct 11 2002
STATUS
approved