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!)
A317938 Numerators of rational valued sequence whose Dirichlet convolution with itself yields sequence A001222 (bigomega n) + A063524 (1, 0, 0, 0, ...). 4

%I #5 Aug 23 2018 21:02:23

%S 1,1,1,7,1,3,1,17,7,3,1,11,1,3,3,139,1,11,1,11,3,3,1,15,7,3,17,11,1,3,

%T 1,263,3,3,3,17,1,3,3,15,1,3,1,11,11,3,1,83,7,11,3,11,1,15,3,15,3,3,1,

%U -3,1,3,11,995,3,3,1,11,3,3,1,11,1,3,11,11,3,3,1,83,139,3,1,-3,3,3,3,15,1,-3,3,11,3,3,3,189,1,11,11,17,1,3,1,15,3

%N Numerators of rational valued sequence whose Dirichlet convolution with itself yields sequence A001222 (bigomega n) + A063524 (1, 0, 0, 0, ...).

%H Antti Karttunen, <a href="/A317938/b317938.txt">Table of n, a(n) for n = 1..65537</a>

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

%o (PARI)

%o A317938aux(n) = if(1==n,n,(bigomega(n)-sumdiv(n,d,if((d>1)&&(d<n),A317938aux(d)*A317938aux(n/d),0)))/2);

%o A317938(n) = numerator(A317938aux(n));

%o (PARI)

%o \\ Memoized implementation:

%o memo317938 = Map();

%o A317938aux(n) = if(1==n,n,if(mapisdefined(memo317938,n),mapget(memo317938,n),my(v = (bigomega(n)-sumdiv(n,d,if((d>1)&&(d<n),A317938aux(d)*A317938aux(n/d),0)))/2); mapput(memo317938,n,v); (v)));

%Y Cf. A001222, A063524, A046644 (denominators).

%Y Cf. also A317831, A317925, A317933, A317845, A317846, A317937.

%K sign,frac

%O 1,4

%A _Antti Karttunen_, Aug 12 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 April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)