login
A383277
The number of divisors d of n for which A034444(d)*d is equal to n.
4
1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0
OFFSET
1
COMMENTS
The number of these divisors is either 0 or 1.
LINKS
H. L. Abbott and M. V. Subbarao, On the Distribution of the Sequence {nd*(n)}, Canadian Mathematical Bulletin , Vol. 32 , No. 1 (1989), pp. 105-108.
FORMULA
a(n) = 1 if either A007814(n) = A005087(n) or A007814(n) > A005087(n) + 1, and 0 otherwise.
MATHEMATICA
a[n_] := DivisorSum[n, 1 &, # * 2^PrimeNu[#] == n &]; Array[a, 100]
(* second program: *)
a[n_] := Module[{e = IntegerExponent[n, 2], w}, w = PrimeNu[n/2^e]; If[e > w + 1 || e == w, 1, 0]]; Array[a, 100]
PROG
(PARI) a(n) = sumdiv(n, d, (1 << omega(d)) * d == n);
(PARI) a(n) = {my(e = valuation(n, 2), w = omega(n >> e)); e > w + 1 || e == w; }
CROSSREFS
Characteristic function of A383276.
First differences of A383278.
The unitary analog of A327166.
Sequence in context: A121559 A004641 A266441 * A266672 A266070 A262855
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, Apr 21 2025
STATUS
approved