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!)
A347115 Möbius transform of A341515. 9

%I #12 Oct 15 2021 21:32:44

%S 1,4,1,10,2,5,4,30,2,118,6,12,10,236,2,90,12,64,16,240,4,594,18,36,6,

%T 830,4,480,22,-116,28,270,6,1428,8,132,30,1784,10,720,36,1076,40,1200,

%U 4,2622,42,108,20,144,12,1680,46,458,12,1440,16,4178,52,-228,58,4772,8,810,20,1242,60,2880,18,2752,66,396

%N Möbius transform of A341515.

%H Antti Karttunen, <a href="/A347115/b347115.txt">Table of n, a(n) for n = 1..10000</a>

%H <a href="/index/3#3x1">Index entries for sequences related to 3x+1 (or Collatz) problem</a>

%H <a href="/index/Pri#prime_indices">Index entries for sequences computed from indices in prime factorization</a>

%F a(n) = A008683(n/d) * A341515(d).

%o (PARI)

%o A005940(n) = { my(p=2, t=1); n--; until(!n\=2, if((n%2), (t*=p), p=nextprime(p+1))); (t); };

%o A064989(n) = {my(f); f = factor(n); if((n>1 && f[1,1]==2), f[1,2] = 0); for (i=1, #f~, f[i,1] = precprime(f[i,1]-1)); factorback(f)};

%o A156552(n) = { my(f = factor(n), p, p2 = 1, res = 0); for(i = 1, #f~, p = 1 << (primepi(f[i, 1]) - 1); res += (p * p2 * (2^(f[i, 2]) - 1)); p2 <<= f[i, 2]); res };

%o A329603(n) = A005940(2+(3*A156552(n)));

%o A341515(n) = if(n%2, A064989(n), A329603(n));

%o A347115(n) = sumdiv(n,d,moebius(n/d)*A341515(d));

%Y Cf. A008683, A064989, A329603, A341515.

%Y Cf. A285702 (odd bisection), A347116 (even bisection).

%Y Cf. also A332463, A347117, A347118, A348045.

%K sign

%O 1,2

%A _Antti Karttunen_, Aug 20 2021

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 23 03:55 EDT 2024. Contains 372758 sequences. (Running on oeis4.)