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!)
A349631 Dirichlet convolution of A003961 with A346479, which is Dirichlet inverse of A250469. 2
1, 0, 0, 0, 0, 0, 0, 6, 0, -6, 0, 12, 0, -6, 0, 18, 0, 24, 0, 24, 0, -24, 0, 0, 0, -24, 60, 36, 0, 48, 0, 42, -20, -42, 0, -12, 0, -42, -10, 12, 0, 72, 0, 60, 60, -48, 0, -24, 0, 42, -30, 72, 0, -84, 0, 12, -30, -78, 0, -120, 0, -72, 120, 126, 0, 180, 0, 96, -30, 132, 0, -48, 0, -96, 60, 108, 0, 174, 0, -84, 120 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,8
COMMENTS
Note that for n = 2..36, a(n) = -A349632(n).
Dirichlet convolution of this sequence with A347376 is A003972.
LINKS
FORMULA
a(n) = Sum_{d|n} A003961(d) * A346479(n/d).
PROG
(PARI)
up_to = 20000;
A020639(n) = if(1==n, n, vecmin(factor(n)[, 1]));
ordinal_transform(invec) = { my(om = Map(), outvec = vector(length(invec)), pt); for(i=1, length(invec), if(mapisdefined(om, invec[i]), pt = mapget(om, invec[i]), pt = 0); outvec[i] = (1+pt); mapput(om, invec[i], (1+pt))); outvec; };
v078898 = ordinal_transform(vector(up_to, n, A020639(n)));
A078898(n) = v078898[n];
A250469(n) = if(1==n, n, my(spn = nextprime(1+A020639(n)), c = A078898(n), k = 0); while(c, k++; if((1==k)||(A020639(k)>=spn), c -= 1)); (k*spn));
DirInverseCorrect(v) = { my(u=vector(#v)); u[1] = (1/v[1]); for(n=2, #v, u[n] = (-u[1]*sumdiv(n, d, if(d<n, v[n/d]*u[d], 0)))); (u) }; \\ Compute the Dirichlet inverse of the sequence given in input vector v.
v346479 = DirInverseCorrect(vector(up_to, n, A250469(n)));
A346479(n) = v346479[n];
A003961(n) = my(f = factor(n)); for (i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); \\ From A003961
A349631(n) = sumdiv(n, d, A003961(d)*A346479(n/d));
CROSSREFS
Cf. A003961, A250469, A346479, A349632 (Dirichlet inverse).
Cf. also A003972, A347376, A349381.
Cf. also arrays A083221, A246278, A249821, A249822 and permutations A250245, A250246.
Sequence in context: A064373 A195290 A349632 * A347377 A280692 A161419
KEYWORD
sign
AUTHOR
Antti Karttunen, Nov 27 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 June 8 08:55 EDT 2024. Contains 373207 sequences. (Running on oeis4.)