login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A347384
Odd numbers k with such a unitary divisor d that A347381(d) > A347381(k).
3
35, 105, 153, 189, 207, 279, 403, 423, 425, 437, 455, 475, 477, 575, 589, 639, 689, 725, 765, 775, 819, 833, 899, 923, 945, 963, 1025, 1035, 1071, 1127, 1143, 1175, 1209, 1271, 1275, 1311, 1325, 1341, 1365, 1391, 1395, 1421, 1425, 1449, 1475, 1495, 1519, 1651, 1719, 1725, 1739, 1767, 1775, 1791, 1881, 1927, 1953, 1961
OFFSET
1,1
EXAMPLE
35 is a product of two primes, 5 and 7, with A347381(7) = 3 > A347381(35) = 2, therefore 35 is included in this sequence.
PROG
(PARI) isA347384(n) = if(!(n%2), 0, my(w=A347381(n)); fordiv(n, d, if(1==gcd(d, n/d) && (A347381(d)>w), return(1))); (0));
CROSSREFS
Cf. A347381.
Subsequences: A347390, A347383.
Sequence in context: A063795 A282851 A015882 * A010085 A033852 A241610
KEYWORD
nonn
AUTHOR
Antti Karttunen, Sep 10 2021
STATUS
approved