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!)
A318498 Denominators of the sequence whose Dirichlet convolution with itself yields A061389, number of (1+phi)-divisors of n. 4

%I #8 Aug 30 2018 22:42:05

%S 1,1,1,2,1,1,1,1,2,1,1,2,1,1,1,8,1,2,1,2,1,1,1,1,2,1,1,2,1,1,1,8,1,1,

%T 1,4,1,1,1,1,1,1,1,2,2,1,1,8,2,2,1,2,1,1,1,1,1,1,1,2,1,1,2,16,1,1,1,2,

%U 1,1,1,2,1,1,2,2,1,1,1,8,8,1,1,2,1,1,1,1,1,2,1,2,1,1,1,8,1,2,2,4,1,1,1,1,1

%N Denominators of the sequence whose Dirichlet convolution with itself yields A061389, number of (1+phi)-divisors of n.

%C The sequence seems to give the denominators of a few other similarly constructed rational valued sequences obtained as "Dirichlet Square Roots" (of possibly A092520 and A293443).

%H Antti Karttunen, <a href="/A318498/b318498.txt">Table of n, a(n) for n = 1..16384</a>

%F a(n) = denominator of f(n), where f(1) = 1, f(n) = (1/2) * (A061389(n) - Sum_{d|n, d>1, d<n} f(d) * f(n/d)) for n > 1.

%F a(n) = 2^A318499(n).

%o (PARI)

%o up_to = 65537;

%o A061389(n) = factorback(apply(e -> (1+eulerphi(e)),factor(n)[,2]));

%o DirSqrt(v) = {my(n=#v, u=vector(n)); u[1]=1; for(n=2, n, u[n]=(v[n]/v[1] - sumdiv(n, d, if(d>1&&d<n, u[d]*u[n/d], 0)))/2); u}; \\ From A317937.

%o v318497_98 = DirSqrt(vector(up_to, n, A061389(n)));

%o A318497(n) = numerator(v318497_98[n]);

%o A318498(n) = denominator(v318497_98[n]);

%Y Cf. A061389, A318497 (numerators), A318499.

%Y Cf. also A299150, A046644.

%K nonn,frac

%O 1,4

%A _Antti Karttunen_, Aug 30 2018

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 March 28 08:12 EDT 2024. Contains 371236 sequences. (Running on oeis4.)