OFFSET
0,1
COMMENTS
f(x) = sum of prime factors without multiplicity, so that f(1500) = 2+3+5 = 10.
a(18) <= 148005789513. a(19) <= 1603226096774. a(20) <= 16032260967715. - Donovan Johnson
MATHEMATICA
k = 2; Table[While[Length[NestWhileList[Plus @@ First /@ FactorInteger[#] &, k, ! PrimeQ[#] &]] != i + 1, k++]; k, {i, 0, 12}] (* Jayanta Basu, Aug 10 2013 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
a(14)-a(15) from Donovan Johnson, Oct 13 2009
Edited comment and a(16)-a(17) from Donovan Johnson, Oct 16 2010
STATUS
approved