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!)
A363307 Expansion of g.f. A(x) satisfying 1 = Sum_{n>=0} (-x)^n * A(x)^n / Product_{k=1..n+1} (1 + (-x)^k). 1
1, 1, 2, 3, 5, 9, 18, 37, 78, 168, 367, 809, 1800, 4040, 9136, 20798, 47627, 109630, 253506, 588602, 1371688, 3207309, 7522302, 17691875, 41716878, 98600132, 233557375, 554358994, 1318282031, 3140435548, 7493519010, 17908158678, 42859216345, 102713690586, 246472881089 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
A related identity: 1 = Sum_{n>=0} (-x)^(n*(n+1)/2) * A(x)^n / Product_{k=1..n+1} (1 + (-x)^k*A(x) ), which holds formally for all A(x).
LINKS
FORMULA
G.f. A(x) = Sum_{n>=0} a(n)*x^n may be defined by the following formulas.
(1) 1 = Sum_{n>=0} (-x)^n * A(x)^n / Product_{k=1..n+1} (1 + (-x)^k).
(2) 1 = Sum_{n>=0} x^n / Product_{k=1..n+1} (1 - (-x)^k*A(x)).
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 3*x^3 + 5*x^4 + 9*x^5 + 18*x^6 + 37*x^7 + 78*x^8 + 168*x^9 + 367*x^10 + 809*x^11 + 1800*x^12 + ...
where
1 = 1/(1 - x) - x*A(x)/((1 - x)*(1 + x^2)) + x^2*A(x)^2/((1 - x)*(1 + x^2)*(1 - x^3)) - x^3*A(x)^3/((1 - x)*(1 + x^2)*(1 - x^3)*(1 + x^4)) + x^4*A(x)^4/((1 - x)*(1 + x^2)*(1 - x^3)*(1 + x^4)*(1 - x^5)) + ...
also,
1 = 1/(1 + x*A(x)) + x/((1 + x*A(x))*(1 - x^2*A(x))) + x^2/((1 + x*A(x))*(1 - x^2*A(x))*(1 + x^3*A(x))) + x^3/((1 + x*A(x))*(1 - x^2*A(x))*(1 + x^3*A(x))*(1 - x^4*A(x))) + x^4/((1 + x*A(x))*(1 - x^2*A(x))*(1 + x^3*A(x))*(1 - x^4*A(x))*(1 + x^5*A(x))) + ...
PROG
(PARI) {a(n) = my(A=[1]); for(i=1, n, A = concat(A, 0);
A[#A] = polcoeff(-1 + sum(n=0, #A, (-x)^n*Ser(A)^n / prod(k=1, n+1, (1 + (-x)^k ) ) ), #A); ); A[n+1]}
for(n=0, 35, print1(a(n), ", "))
(PARI) {a(n) = my(A=[1]); for(i=1, n, A = concat(A, 0);
A[#A] = polcoeff(-1 + sum(n=0, #A, x^n / prod(k=1, n+1, (1 - (-x)^k*Ser(A)) ) ), #A); ); A[n+1]}
for(n=0, 35, print1(a(n), ", "))
CROSSREFS
Cf. A352018.
Sequence in context: A000602 A034790 A047121 * A182080 A259117 A096753
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 25 2023
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 28 23:31 EDT 2024. Contains 373826 sequences. (Running on oeis4.)