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!)
A320781 Inverse Euler transform of the Moebius function A008683. 11
1, -2, 0, 0, -1, 2, -4, 5, -7, 9, -10, 7, -5, -2, 19, -44, 70, -103, 138, -166, 154, -83, -70, 346, -797, 1413, -2160, 2931, -3479, 3380, -2080, -1259, 7593, -17743, 32014, -49818, 68683, -82985, 82807, -53462, -24942, 176139, -422887, 777357, -1226688 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The Euler transform of a sequence q is the sequence of coefficients of x^n, n > 0, in the expansion of Product_{n > 0} 1/(1 - x^n)^q(n).
LINKS
OEIS Wiki, Euler transform
MAPLE
# The function EulerInvTransform is defined in A358451.
a := EulerInvTransform(n -> ifelse(n=0, 1, NumberTheory:-Moebius(n))):
seq(a(n), n = 1..45); # Peter Luschny, Nov 21 2022
MATHEMATICA
EulerInvTransform[{}]={}; EulerInvTransform[seq_]:=Module[{final={}}, For[i=1, i<=Length[seq], i++, AppendTo[final, i*seq[[i]]-Sum[final[[d]]*seq[[i-d]], {d, i-1}]]];
Table[Sum[MoebiusMu[i/d]*final[[d]], {d, Divisors[i]}]/i, {i, Length[seq]}]];
EulerInvTransform[Table[MoebiusMu[n], {n, 30}]]
CROSSREFS
Sequence in context: A051510 A361800 A340958 * A284608 A325201 A260019
KEYWORD
sign
AUTHOR
Gus Wiseman, Oct 22 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 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)