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”).

A379119
a(1) = 1; for n > 1, a(n) is the smallest unitary divisor d > 1 of n such that A048720(A065621(sigma(n/d)),sigma(d)) is equal to sigma(n).
0
1, 2, 3, 4, 5, 2, 7, 8, 9, 2, 11, 4, 13, 2, 5, 16, 17, 18, 19, 4, 3, 2, 23, 8, 25, 13, 27, 4, 29, 2, 31, 32, 11, 34, 5, 36, 37, 38, 13, 8, 41, 2, 43, 4, 45, 2, 47, 16, 49, 25, 17, 4, 53, 54, 5, 8, 19, 29, 59, 4, 61, 2, 9, 64, 13, 2, 67, 68, 23, 2, 71, 8, 73, 74, 25, 4, 11, 13, 79, 16, 81, 82, 83, 4, 85, 2, 29, 8, 89
OFFSET
1,2
FORMULA
a(n) = n / A379113(n).
PROG
(PARI)
A048720(b, c) = fromdigits(Vec(Pol(binary(b))*Pol(binary(c)))%2, 2);
A065621(n) = bitxor(n-1, n+n-1);
A379119(n) = if(1==n, n, my(s=sigma(n)); fordiv(n, d, if((d>1) && 1==gcd(d, n/d) && A048720(A065621(sigma(n/d)), sigma(d))==s, return(d))));
CROSSREFS
Cf. A000203, A048720, A065621, A379113, A379114 (positions of terms such that a(n) < n).
Cf. also A379120.
Sequence in context: A323130 A028233 A375400 * A216972 A066296 A162961
KEYWORD
nonn,new
AUTHOR
Antti Karttunen, Dec 17 2024
STATUS
approved