OFFSET
1,2
COMMENTS
Conjecture: there are infinitely many consecutive terms in this sequence. For example, sopfr(143335) = 377 and sopfr(143336) = 89 are both Fibonacci numbers.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
a(10)=22 because the sum of its prime factors is 13, the 7th
Fibonacci number.
MATHEMATICA
spdfibQ[n_]:=With[{fibs=Fibonacci[Range[30]]}, MemberQ[fibs, Total[ Times@@@ FactorInteger[ n]]]]; Select[Range[1100], spdfibQ] (* Harvey P. Dale, Nov 11 2022 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Jason Earls, Oct 10 2004
STATUS
approved