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!)
A349400 Dirichlet inverse of EKG-permutation, A064413. 2
1, -2, -4, -2, -3, 7, -12, 8, 6, 7, -15, 18, -14, 41, 3, -12, -16, -4, -22, 9, 63, 33, -30, -49, -26, 28, -10, 15, -39, -2, -32, 6, 103, 13, 30, -69, -19, 31, 67, -68, -44, -218, -23, 39, 36, 70, -52, 38, 88, 67, 65, 52, -55, -21, 20, -294, 147, 69, -66, -52, -31, 35, -144, 48, 16, -240, -37, 93, 165, -180, -76, 78 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(1) = 1; a(n) = -Sum_{d|n, d < n} A064413(n/d) * a(d).
PROG
(PARI)
v064413 = readvec("b064413_to.txt"); \\ Data prepared with Chai Wah Wu's Dec 08 2014 Python-program given in A064413.
A064413(n) = v064413[n];
memoA349400 = Map();
A349400(n) = if(1==n, 1, my(v); if(mapisdefined(memoA349400, n, &v), v, v = -sumdiv(n, d, if(d<n, A064413(n/d)*A349400(d), 0)); mapput(memoA349400, n, v); (v)));
CROSSREFS
Sequence in context: A151849 A360373 A141387 * A335678 A368434 A134400
KEYWORD
sign
AUTHOR
Antti Karttunen, Nov 19 2021
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 30 15:02 EDT 2024. Contains 372968 sequences. (Running on oeis4.)