OFFSET
1,2
COMMENTS
First differs from A282472 at n = 48.
The corresponding record values are 0, 1/2, 2/3, 1, 7/6, 5/4, 3/2, 5/3, 7/4, 11/6, 2, ...
All the terms are least integers of their prime signature (A025487) since f(n) = A346009(n)/A346010(n) depends only on the prime signature of n.
This sequence is infinite since f(n) is unbounded. E.g., f(A002110(n)) = n/2.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..198
MATHEMATICA
lps = Cases[Import["https://oeis.org/A025487/b025487.txt", "Table"], {_, _}][[;; , 2]]; f[p_, e_] := e/(e + 1); f[1] = 0; f[n_] := Plus @@ f @@@ FactorInteger[n]; s = {}; fmax = -1; Do[f1 = f[lps[[k]]]; If[f1 > fmax, fmax = f1; AppendTo[s, lps[[k]]]], {k, 1, Length[lps]}]; s
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Jul 01 2021
STATUS
approved