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!)
A073592 Euler transform of negative integers. 35
1, -1, -2, -1, 0, 4, 4, 7, 3, -2, -9, -17, -25, -24, -13, -1, 32, 61, 97, 111, 112, 74, 8, -108, -243, -392, -512, -569, -542, -358, -33, 473, 1078, 1788, 2395, 2865, 2955, 2569, 1496, -245, -2751, -5783, -9121, -12299, -14739, -15806, -14719, -10930, -3813, 6593, 20284, 36139, 53081, 68620, 80539 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
1/A(x) is g.f. for A000219.
LINKS
Seiichi Manyama, Table of n, a(n) for n = 0..10000 (terms 0..1000 from Vaclav Kotesovec)
E. M. Wright, Coefficients of a reciprocal generating function, Quart. J. Math. 17 (1) (1966) 39-43, ADS Abstracts.
N. J. A. Sloane, Transforms
FORMULA
G.f.: Product_{k>0} (1-x^k)^k.
a(n) = -1/n*Sum_{k=1..n} sigma[2](k)*a(n-k).
G.f.: exp( Sum_{n>=1} -sigma_2(n)*x^n/n ). - Seiichi Manyama, Mar 04 2017
MAPLE
a:= proc(n) option remember; `if`(n=0, 1, -add(
numtheory[sigma][2](j)*a(n-j), j=1..n)/n)
end:
seq(a(n), n=0..60); # Alois P. Heinz, Mar 12 2015
MATHEMATICA
nmax=50; CoefficientList[Series[Exp[Sum[-x^k/(k*(1-x^k)^2), {k, 1, nmax}]], {x, 0, nmax}], x] (* Vaclav Kotesovec, Mar 02 2015 *)
a[n_]:= a[n] = -1/n*Sum[DivisorSigma[2, k]*a[n-k], {k, 1, n}]; a[0]=1; Table[a[n], {n, 0, 100}] (* Vaclav Kotesovec, Mar 02 2015 *)
PROG
(SageMath) # uses[EulerTransform from A166861]
b = EulerTransform(lambda n: -n)
print([b(n) for n in range(55)]) # Peter Luschny, Nov 11 2020
CROSSREFS
Column k=1 of A283272.
Sequence in context: A109167 A066426 A100887 * A164994 A269952 A361954
KEYWORD
sign
AUTHOR
Vladeta Jovovic, Aug 28 2002
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 16 12:52 EDT 2024. Contains 371711 sequences. (Running on oeis4.)