login
A387718
Smallest divisor d of n such that n/d is deficient, i.e., sigma(n/d) < 2*(n/d).
2
1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 3, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 4, 1, 1, 1, 4, 1, 2, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 2, 1, 4, 1, 1, 1, 4, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 8, 1, 1, 1, 1, 1, 2, 1, 5, 1, 1, 1, 4, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 3, 1, 1, 1, 2, 1, 2, 1, 2, 1
OFFSET
1,6
LINKS
FORMULA
a(n) = n / A387717(n).
a(n) >= A378660(n).
PROG
(PARI) A387718(n) = { fordiv(n, d, if(sigma(n/d)<2*(n/d), return(d))); (n); };
CROSSREFS
Cf. A000203, A005100 (positions of 1's), A378660, A387717.
Sequence in context: A389900 A285337 A328457 * A340827 A360119 A033630
KEYWORD
nonn
AUTHOR
Antti Karttunen, Sep 11 2025
STATUS
approved