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!)
A346104 Dirichlet inverse of A342920. 2
1, -1, -1, -1, -1, 0, -1, -5, -11, 0, -1, 1, -1, 0, -4, -1, -1, 1, -1, 1, -4, 0, -1, -8, -49, 0, 7, 1, -1, -48, -1, 25, -4, 0, -124, 12, -1, 0, -4, 0, -1, -10, -1, 1, -13, 0, -1, 41, -1485, 1, -4, 1, -1, 22, -92, 10, -4, 0, -1, 76, -1, 0, -39, 23, -262, 2, -1, 1, -4, 134, -1, -138, -1, 0, -1033, 1, -240, 2, -1, 11, -201, 0, -1, 6 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,8
COMMENTS
The lowermost scatter plot gives an appearance of an elliptic galaxy seen from its side.
LINKS
PROG
(PARI)
up_to = 2310;
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 (correctly!)
A034386(n) = prod(i=1, primepi(n), prime(i));
A108951(n) = { my(f=factor(n)); prod(i=1, #f~, A034386(f[i, 1])^f[i, 2]) }; \\ From A108951
A342002(n) = { my(s=0, m=1, p=2, e); while(n, e = (n%p); m *= p^(e>0); s += (e/p); n = n\p; p = nextprime(1+p)); (s*m); };
v346104 = DirInverseCorrect(vector(up_to, n, A342920(n)));
A346104(n) = v346104[n];
CROSSREFS
Cf. also A342417.
Sequence in context: A201026 A213146 A309558 * A087463 A160366 A160923
KEYWORD
sign,look
AUTHOR
Antti Karttunen, Jul 09 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 April 24 10:00 EDT 2024. Contains 371935 sequences. (Running on oeis4.)