reviewed
approved
reviewed
approved
proposed
reviewed
editing
proposed
V. Vladimir S. Shevelev, Multiplicative functions in the Fermi-Dirac arithmetic, Izvestia Vuzov of the North-Caucasus region, Nature sciences 4 (1996), 28-43 [Russian].
(PARI) a(n) = vecsum(apply(x -> hammingweight(x), factor(n!)[, 2])); \\ Amiram Eldar, Aug 24 2024
b[n_] := 2^(-1 + Position[Reverse@IntegerDigits[n, 2], _?(# == 1 &)]) // Flatten; a[n_] := Module[{np = PrimePi[n]}, v = Table[0, {np}]; Do[p = Prime[k]; Do[v[[k]] += IntegerExponent[j, p], {j, 2, n}], {k, 1, np}]; Length[(b /@ v) // Flatten]]; Array[a, 77, 2] (* Amiram Eldar, Sep 17 2019 *)
f[p_, e_] := DigitCount[e, 2, 1]; a[1] = 0; a[n_] := Plus @@ f @@@ FactorInteger[n!]; Array[a, 100, 2] (* Amiram Eldar, Aug 24 2024 *)
approved
editing
Chai Wah Wu, <a href="/A177329/b177329_1.txt">Table of n, a(n) for n = 2..10000</a> (terms 2..1000 from Amiram Eldar)
reviewed
approved