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!)
A353454 a(1) = 1, for n > 1, a(n) = -Sum_{d|n, d<n} a(A064989(n)) * a(d). 3
1, -1, 1, 0, -1, 1, 1, 0, 0, 1, -1, 2, 1, 1, -1, 0, -1, 0, 1, 0, -3, 1, -1, 4, 0, 1, 0, 2, 1, -1, -1, 0, -1, 1, 1, 0, 1, 1, -3, 0, -1, -1, 1, 0, 0, 1, -1, 8, 0, 0, -1, 2, 1, 0, -3, 4, -3, 1, -1, -2, 1, 1, 0, 0, 1, -1, -1, 0, -1, 3, 1, 0, -1, 1, 0, 2, -1, -1, 1, 0, 0, 1, -1, -4, -3, 1, -3, 0, 1, 0, 9, 0, -1, 1, 1, 16 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,12
LINKS
FORMULA
a(1) = 1, and for n > 1, a(n) = -Sum_{d|n, d<n} A353455(n) * a(d).
For all n >= 1, a(A000040(n)) = ((-1)^n).
PROG
(PARI)
A000265(n) = (n>>valuation(n, 2));
A064989(n) = { my(f=factor(A000265(n))); for(i=1, #f~, f[i, 1] = precprime(f[i, 1]-1)); factorback(f); };
memoA353454 = Map();
A353454(n) = if(1==n, 1, my(v); if(mapisdefined(memoA353454, n, &v), v, v = -sumdiv(n, d, if(d<n, A353454(A064989(n))*A353454(d), 0)); mapput(memoA353454, n, v); (v)));
CROSSREFS
Cf. A000040, A064989, A353455 [= a(A064989(n))].
Cf. also A353423, A353457.
Sequence in context: A321920 A106276 A305053 * A276799 A353423 A037907
KEYWORD
sign
AUTHOR
Antti Karttunen, Apr 21 2022
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 May 16 17:27 EDT 2024. Contains 372554 sequences. (Running on oeis4.)