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!)
A318318 Denominators of rational valued sequence whose Dirichlet convolution with itself yields A173557. 2
1, 2, 1, 8, 1, 2, 1, 16, 2, 1, 1, 8, 1, 2, 1, 128, 1, 4, 1, 4, 1, 2, 1, 16, 1, 1, 2, 8, 1, 1, 1, 256, 1, 1, 1, 16, 1, 2, 1, 8, 1, 2, 1, 8, 1, 2, 1, 128, 2, 1, 1, 4, 1, 4, 1, 16, 1, 1, 1, 4, 1, 2, 2, 1024, 1, 2, 1, 1, 1, 1, 1, 32, 1, 1, 1, 8, 1, 1, 1, 64, 8, 1, 1, 8, 1, 2, 1, 16, 1, 2, 1, 8, 1, 2, 1, 256, 1, 4, 2, 1, 1, 1, 1, 8, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Not multiplicative because A318317 contains zeros.
Differs from A317926 at n = 200, 400, 600, 800, 900, 1200, 1400, 1600, 1800, 2200, 2400, 2700, 2800, 3200, 3600, 3800, 4050, 4200, 4400, 4600, 4800, 4900, 5200, ..., which seem to be a subsequence of positions of zeros in A318317.
Here a(200) = 1, while A317926(200) = 2.
LINKS
FORMULA
a(n) = denominator of f(n), where f(1) = 1, f(n) = (1/2) * (A173557(n) - Sum_{d|n, d>1, d<n} f(d) * f(n/d)) for n > 1.
PROG
(PARI)
up_to = 16384;
A173557(n) = my(f=factor(n)[, 1]); prod(k=1, #f, f[k]-1); \\ From A173557
DirSqrt(v) = {my(n=#v, u=vector(nA173557)); 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.
v318317_18 = DirSqrt(vector(up_to, n, A173557(n)));
A318318(n) = denominator(v318317_18[n]);
CROSSREFS
Cf. A173557, A318317 (numerators).
Cf. also A317926.
Sequence in context: A011327 A318454 A317926 * A318314 A230369 A341406
KEYWORD
nonn,frac
AUTHOR
Antti Karttunen, Aug 24 2018
STATUS
approved

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 15:11 EDT 2024. Contains 371794 sequences. (Running on oeis4.)