The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A355935 Dirichlet inverse of A091862, characteristic function of numbers for which A267116(n) = bigomega(n), where A267116 is the bitwise-OR of the exponents of primes in the prime factorization of n. 1

%I #10 Jul 22 2022 10:38:15

%S 1,-1,-1,0,-1,2,-1,0,0,2,-1,-2,-1,2,2,0,-1,-2,-1,-2,2,2,-1,2,0,2,0,-2,

%T -1,-6,-1,0,2,2,2,6,-1,2,2,2,-1,-6,-1,-2,-2,2,-1,-2,0,-2,2,-2,-1,2,2,

%U 2,2,2,-1,10,-1,2,-2,0,2,-6,-1,-2,2,-6,-1,-8,-1,2,-2,-2,2,-6,-1,-2,0,2,-1,10,2,2,2,2,-1,10,2,-2,2,2,2,2,-1,-2,-2,6,-1,-6,-1,2,-6

%N Dirichlet inverse of A091862, characteristic function of numbers for which A267116(n) = bigomega(n), where A267116 is the bitwise-OR of the exponents of primes in the prime factorization of n.

%H Antti Karttunen, <a href="/A355935/b355935.txt">Table of n, a(n) for n = 1..100000</a>

%H <a href="/index/Eu#epf">Index entries for sequences computed from exponents in factorization of n</a>

%F a(1) = 1, and for n > 1, a(n) = -Sum_{d|n, d<n} A091862(n/d) * a(d).

%t s[n_] := If[n == 1 || PrimeOmega[n] == BitOr @@ FactorInteger[n][[;; , 2]], 1, 0]; a[1] = 1; a[n_] := a[n] = -DivisorSum[n, s[n/#]*a[#] &, # < n &]; Array[a, 100] (* _Amiram Eldar_, Jul 21 2022 *)

%o (PARI)

%o A267116(n) = if(1==n, 0, fold(bitor, factor(n)[, 2]));

%o A091862(n) = (bigomega(n)==A267116(n));

%o memoA355935 = Map();

%o A355935(n) = if(1==n,1,my(v); if(mapisdefined(memoA355935,n,&v), v, v = -sumdiv(n,d,if(d<n,A091862(n/d)*A355935(d),0)); mapput(memoA355935,n,v); (v)));

%Y Cf. A091862, A267116, A268375.

%K sign

%O 1,6

%A _Antti Karttunen_, Jul 21 2022

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 29 16:36 EDT 2024. Contains 372952 sequences. (Running on oeis4.)