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!)
A307952 G.f. A(x) satisfies: 1 = Sum_{n>=0} x^n * ((1+x)^(2*n) - A(x))^(n+1), where A(0) = 0. 4
1, 3, 7, 39, 218, 1396, 10078, 78369, 655415, 5833338, 54863836, 542721779, 5623476082, 60831556079, 685114308524, 8014714349561, 97189873705285, 1219512416998790, 15808537423941847, 211404384080948562, 2912638538651962032, 41294363532894786740, 601795320633550518240, 9005722875874046697058, 138257703952334108620495, 2175595836996606841813378, 35061246912965660203462227 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f. A(x) satisfies:
(1) 1 = Sum_{n>=0} x^n * ((1+x)^(2*n) - A(x))^(n+1).
(2) 1 + x = Sum_{n>=0} x^n * (1+x)^(2*n*(n-1)) / (1 + x*(1+x)^(2*n)*A(x))^(n+1).
(3) 1 = Sum_{n>=0} x^n * (1-x)^(4*n+2) / ((1-x)^(2*n+1) - x*A(x/(1-x)))^(n+1).
(4) 1 = Sum_{n>=0} x^n * (1 - (1-x)^(2*n-2) * A(x/(1-x)))^n / (1-x)^(2*n^2-n-1)).
EXAMPLE
G.f.: A(x) = x + 3*x^2 + 7*x^3 + 39*x^4 + 218*x^5 + 1396*x^6 + 10078*x^7 + 78369*x^8 + 655415*x^9 + 5833338*x^10 + 54863836*x^11 + 542721779*x^12 + ...
such that
1 = (1 - A(x)) + x*((1+x)^2 - A(x))^2 + x^2*((1+x)^4 - A(x))^3 + x^3*((1+x)^6 - A(x))^4 + x^4*((1+x)^8 - A(x))^5 + x^5*((1+x)^10 - A(x))^6 + x^6*((1+x)^12 - A(x))^7 + x^7*((1+x)^14 - A(x))^8 + ...
also
1 + x = 1/(1 + x*A(x)) + x/(1 + x*(1+x)^2*A(x))^2 + x^2*(1+x)^4/(1 + x*(1+x)^4*A(x))^3 + x^3*(1+x)^12/(1 + x*(1+x)^6*A(x))^4 + x^4*(1+x)^24/(1 + x*(1+x)^8*A(x))^5 + x^5*(1+x)^40/(1 + x*(1+x)^10*A(x))^6 + ...
PROG
(PARI) {a(n) = my(A=[1]); for(i=1, n, A = concat(A, 0); A[#A] = polcoeff( sum(m=0, #A, x^m*((1+x +x*O(x^#A))^(2*m) - x*Ser(A))^(m+1) ), #A); ); A[n+1]}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A056250 A113870 A209326 * A074582 A105621 A181081
KEYWORD
nonn
AUTHOR
Paul D. Hanna, May 07 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 September 3 21:01 EDT 2024. Contains 375675 sequences. (Running on oeis4.)