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!)
A317940 Numerators of sequence whose Dirichlet convolution with itself yields A046644. 5
1, 1, 1, 7, 1, 1, 1, 9, 7, 1, 1, 7, 1, 1, 1, 427, 1, 7, 1, 7, 1, 1, 1, 9, 7, 1, 9, 7, 1, 1, 1, 471, 1, 1, 1, 49, 1, 1, 1, 9, 1, 1, 1, 7, 7, 1, 1, 427, 7, 7, 1, 7, 1, 9, 1, 9, 1, 1, 1, 7, 1, 1, 7, 4099, 1, 1, 1, 7, 1, 1, 1, 63, 1, 1, 7, 7, 1, 1, 1, 427, 427, 1, 1, 7, 1, 1, 1, 9, 1, 7, 1, 7, 1, 1, 1, 471, 1, 7, 7, 49, 1, 1, 1, 9, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
Multiplicative because A046644 is.
No negative terms among the first 2^20 terms. Is the sequence nonnegative?
LINKS
FORMULA
a(n) = numerator of f(n), where f(1) = 1, f(n) = (1/2) * (A046644(n) - Sum_{d|n, d>1, d<n} f(d) * f(n/d)) for n > 1.
PROG
(PARI)
up_to = 65537;
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.
A005187(n) = { my(s=n); while(n>>=1, s+=n); s; };
A046644(n) = factorback(apply(e -> 2^A005187(e), factor(n)[, 2]));
v317940aux = DirSqrt(vector(up_to, n, A046644(n)));
A317940(n) = numerator(v317940aux[n]);
CROSSREFS
Cf. A005187, A046644, A317934 (denominators), A317941.
Sequence in context: A365332 A367483 A348281 * A318674 A284118 A165725
KEYWORD
nonn,frac,mult
AUTHOR
Antti Karttunen, Aug 14 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 25 05:56 EDT 2024. Contains 371964 sequences. (Running on oeis4.)