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!)
A206637 G.f. satisfies: A(x) = Sum_{n>=0} 2^n*A(x)^n * x^(n^2) / Product_{k=1..n} (1 - 2*x^k)*(1 - x^k*A(x)). 3
1, 2, 10, 50, 266, 1466, 8370, 49090, 294458, 1798794, 11156074, 70069514, 444822530, 2849764698, 18401517066, 119640989514, 782575127258, 5146252178882, 34003440381186, 225635772455882, 1503017848153914, 10046960505610082, 67372689978768714, 453099298491559554 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f. satisfies the identities:
(1) A(x) = 1 + Sum_{n>=1} 2*x^n*A(x)^n / Product_{k=1..n} (1 - 2*x^k).
(2) A(x) = 1 + Sum_{n>=1} 2^n*x^n*A(x) / Product_{k=1..n} (1 - x^k*A(x)).
EXAMPLE
G.f.: A(x) = 1 + 2*x + 10*x^2 + 50*x^3 + 266*x^4 + 1466*x^5 + 8370*x^6 +...
where the g.f. satisfies:
(0) A(x) = 1 + 2*x*A(x)/((1-2*x)*(1-x*A(x))) + 4*x^4*A(x)^2/((1-2*x)*(1-2*x^2)*(1-x*A(x))*(1-x^2*A(x))) + 8*x^9*A(x)^3/((1-2*x)*(1-2*x^2)*(1-2*x^3)*(1-x*A(x))*(1-x^2*A(x))*(1-x^3*A(x))) +...
(1) A(x) = 1 + 2*x*A(x)/(1-2*x) + 2*x^2*A(x)^2/((1-2*x)*(1-2*x^2)) + 2*x^3*A(x)^3/((1-2*x)*(1-2*x^2)*(1-2*x^3)) +...
(2) A(x) = 1 + 2*x*A(x)/(1-x*A(x)) + 4*x^2*A(x)/((1-x*A(x))*(1-x^2*A(x))) + 8*x^3*A(x)/((1-x*A(x))*(1-x^2*A(x))*(1-x^3*A(x))) +...
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=1+sum(m=1, sqrtint(n+1), x^(m^2)*2^m*A^m/prod(k=1, m, (1-2*x^k)*(1-x^k*A+x*O(x^n))))); polcoeff(A, n)}
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=1+sum(m=1, n, 2*x^m*A^m/prod(k=1, m, (1-2*x^k+x*O(x^n))))); polcoeff(A, n)}
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=1+sum(m=1, n, 2^m*x^m*A/prod(k=1, m, (1-x^k*A+x*O(x^n))))); polcoeff(A, n)}
for(n=0, 35, print1(a(n), ", "))
CROSSREFS
Sequence in context: A110170 A026332 A027908 * A318494 A020088 A205772
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Feb 10 2012
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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)