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!)
A307059 Expansion of 1/(2 - Product_{k>=1} (1 - x^k)). 8
1, -1, 0, 1, -1, 1, -1, 1, 0, -2, 4, -4, 1, 3, -5, 4, -3, 3, -1, -6, 13, -12, 2, 9, -13, 10, -6, 6, -4, -9, 28, -30, 5, 25, -28, 5, 9, 7, -27, 11, 32, -47, 2, 51, -27, -74, 128, -34, -131, 183, -78, -15, -37, 97, 89, -480, 649, -242, -498, 904, -663, 223, -140, 169, 488, -1818 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,10
COMMENTS
Invert transform of A010815.
Alternating row sums of Riordan triangle (1, 1 - Product_{j>=1} (1-x^j) ), See A341418(n, m) without column {1, repeat(0)} for m = 0 and n >= 0. - Wolfdieter Lang, Feb 17 2021
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} A010815(k)*a(n-k).
G.f.: 1/(2 - QPochhammer(x)). - G. C. Greubel, Sep 08 2023
MATHEMATICA
nmax=65; CoefficientList[Series[1/(2 - Product[(1 - x^k), {k, nmax}]), {x, 0, nmax}], x]
PROG
(Magma)
m:=80;
R<x>:=PowerSeriesRing(Integers(), m);
Coefficients(R!( 1/(2 - (&*[1 - x^j: j in [1..m+2]])) )); // G. C. Greubel, Sep 08 2023
(SageMath)
from sage.modular.etaproducts import qexp_eta
m=80;
def f(x): return 1/(2 - qexp_eta(QQ[['q']], m+2).subs(q=x) )
def A307059_list(prec):
P.<x> = PowerSeriesRing(QQ, prec)
return P( f(x) ).list()
A307059_list(m) # G. C. Greubel, Sep 08 2023
CROSSREFS
Sequence in context: A295633 A159778 A243278 * A328412 A079536 A058923
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Mar 21 2019
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 23 06:04 EDT 2024. Contains 371906 sequences. (Running on oeis4.)