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!)
A166234 The inverse of the constant 1 function under the exponential convolution (also called the exponential Möbius function). 7

%I #46 Nov 08 2020 23:05:35

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

%T 1,1,-1,1,1,1,1,1,1,1,-1,1,1,1,-1,-1,1,1,0,-1,-1,1,-1,1,-1,1,-1,1,1,1,

%U -1,1,1,-1,1,1,1,1,-1,1,1,1,1,1,1,-1,-1,1,1,1,0,0,1,1,-1,1,1,1,-1,1,-1,1

%N The inverse of the constant 1 function under the exponential convolution (also called the exponential Möbius function).

%H Reinhard Zumkeller, <a href="/A166234/b166234.txt">Table of n, a(n) for n = 1..10000</a>

%H Xiaodong Cao and Wenguang Zahi, <a href="https://cs.uwaterloo.ca/journals/JIS/VOL13/Cao/cao4.html">Some arithmetic functions involving exponential divisors</a>, Journal of Integer Sequences, Vol. 13 (2010), Article 10.3.7.

%H Andrew V. Lelechenko, <a href="https://doi.org/10.1007/s11253-017-1289-7">Exponential and infinitary divisors</a>, Ukrainian Mathematical Journal, Vol. 68, No. 8 (2017), pp. 1222-1237; <a href="http://arxiv.org/abs/1405.7597">arXiv preprint</a>, arXiv:1405.7597 [math.NT], 2014, function mu^(E)(n).

%H M. V. Subbarao, <a href="http://dx.doi.org/10.1007/BFb0058796">On some arithmetic convolutions</a>, in: A. A. Gioia and D. L. Goldsmith (eds.), The Theory of Arithmetic Functions, Lecture Notes in Mathematics No. 251, Springer, 1972, pp. 247-271; <a href="https://web.archive.org/web/20110910073428/http://www.math.ualberta.ca/~subbarao/documents/Subbarao7.pdf">alternative link</a>.

%H László Tóth, <a href="http://ac.inf.elte.hu/Vol_024_2004/285.pdf">On certain arithmetic functions involving exponential divisors</a>, Annales Univ. Sci. Budapest., Sect. Comp., Vol. 24 (2004), pp. 285-296; <a href="https://arxiv.org/abs/math/0610274">arXiv preprint</a>, arXiv:math/0610274 [math.NT], 2006-2009.

%H László Tóth, <a href="http://ac.inf.elte.hu/Vol_027_2007/155.pdf">On certain arithmetic functions involving exponential divisors, II</a>, Annales Univ. Sci. Budapest., Sect. Comp., Vol. 27 (2007), pp. 155-166; <a href="https://arxiv.org/abs/0708.3557">arXiv preprint</a>, arXiv:0708.3557 [math.NT], 2007-2009.

%F Multiplicative, a(p^e) = mu(e) for any prime power p^e (e>=1), where mu is the Möbius function A008683.

%F a(A130897(n)) = 0; a(A209061(n)) <> 0. - _Reinhard Zumkeller_, Mar 13 2012

%F Asymptotic mean: lim_{n->oo} (1/n) * Sum_{k=1..n} a(k) = Product_{p prime} (1 + Sum_{k>=2} (mu(k) - mu(k-1))/p^k) = 0.3609447238... (Tóth, 2007). - _Amiram Eldar_, Nov 08 2020

%p A166234 := proc(n)

%p local a,p;

%p a := 1;

%p if n =1 then

%p ;

%p else

%p for p in ifactors(n)[2] do

%p a := a*numtheory[mobius](op(2,p)) ;

%p end do:

%p end if;

%p a ;

%p end proc:# _R. J. Mathar_, Nov 30 2016

%t a[n_] := Times @@ MoebiusMu /@ FactorInteger[n][[All, 2]];

%t Array[a, 100] (* _Jean-François Alcover_, Nov 16 2017 *)

%o (Haskell)

%o a166234 = product . map (a008683 . fromIntegral) . a124010_row

%o -- _Reinhard Zumkeller_, Mar 13 2012

%o (PARI) a(n)=factorback(apply(moebius, factor(n)[,2])) \\ _Charles R Greathouse IV_, Sep 02 2015

%Y Cf. A008683, A049419, A051377, A124010, A209802 (partial sums).

%K mult,sign

%O 1,1

%A _Laszlo Toth_, Oct 09 2009

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 April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)