login
A047829
Becomes prime after exactly 10 iterations of f(x) = sum of prime factors of x.
0
167073, 212438, 424876, 480226, 492494, 501219, 567614, 595942, 656714, 668319, 670465, 688958, 723853, 738662, 743973, 768817, 791842, 804558, 849752, 849818, 864074, 887613, 888542, 960452, 975662, 984988, 1012786, 1037845, 1048574
OFFSET
1,1
COMMENTS
f(x) = sum of prime factors without multiplicity, so that f(1500) = 2+3+5 = 10.
MATHEMATICA
spf10Q[n_]:=Boole[PrimeQ[NestList[Total[FactorInteger[#][[All, 1]]]&, n, 10]]] == {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1}; Select[Range[105*10^4], spf10Q] (* Harvey P. Dale, Aug 04 2021 *)
CROSSREFS
Sequence in context: A319295 A235846 A187170 * A236494 A236489 A235436
KEYWORD
nonn
STATUS
approved