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!)
A204218 G.f. satisfies: A(x) = 1 + Sum_{n>=1} n * (x*A(x))^(n*(n+1)/2) / (1 - x^n*A(x)^n). 1
1, 1, 2, 7, 22, 74, 271, 1012, 3858, 15046, 59579, 238825, 967873, 3958517, 16316594, 67716000, 282719162, 1186633647, 5004102122, 21192022233, 90089538788, 384305738731, 1644544501988, 7057705570877, 30368821119351, 130993073168419, 566297366630412, 2453269044761359 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f. satisfies: A(x) = 1 + 1/Theta4(x*A(x))^2 * Sum_{n>=1} (-1)^(n-1) * n * (x*A(x))^(n*(n+1)/2) * (1 - x^n*A(x)^n)/(1 + x^n*A(x)^n)^2 where Theta4(x) = 1 + 2*Sum_{n>=1} (-x)^(n^2), due to an identity of Ramanujan.
G.f. satisfies: A(x) = 1 + Sum_{n>=1} A204217(n)*x^n*A(x)^n.
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 7*x^3 + 22*x^4 + 74*x^5 + 271*x^6 + 1012*x^7 +...
where A(x) = 1 + x*A(x)/(1 - x*A(x)) + 2*x^3*A(x)^3/(1 - x^2*A(x)^2) + 3*x^6*A(x)^6/(1 - x^3*A(x)^3) + 4*x^10*A(x)^10/(1 - x^4*A(x)^4) +...
Also, by a Ramanujan identity:
(A(x) - 1)*Theta4(x*A(x))^2 = x*A(x)*(1 - x*A(x))/(1 + x*A(x))^2 - 2*x^3*A(x)^3*(1 - x^2*A(x)^2)/(1 + x^2*A(x)^2)^2 + 3*x^6*A(x)^6*(1 - x^3*A(x)^3)/(1 + x^3*A(x)^3)^2 - 4*x^10*A(x)^10*(1 - x^4*A(x)^4)/(1 + x^4*A(x)^4)^2 +...
MATHEMATICA
a[n_] := (For[A = 1+x; i = 1, i <= n, i++, A = 1+Sum[m*(x*A)^(m*(m+1)/2)/(1 - (x*A + x*O[x]^n)^m), {m, 1, n}]]; Coefficient[A, x, n]); Table[an = a[n]; Print[an]; an, {n, 0, 27}] (* Jean-François Alcover, Jun 04 2017, translated from PARI *)
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=1+sum(m=1, n, m*(x*A)^(m*(m+1)/2)/(1-(x*A +x*O(x^n))^m))); polcoeff(A, n)}
(PARI) {a(n)=local(A=1+x, Theta4=1+2*sum(m=1, sqrtint(n+1), (-x)^(m^2))); for(i=1, n, A=1+1/subst(Theta4^2, x, x*A+x*O(x^n))*sum(m=1, sqrtint(2*n+1), (-1)^(m-1)*m*(x*A)^(m*(m+1)/2)*(1-(x*A)^m)/(1+(x*A)^m+x*O(x^n))^2)); polcoeff(A, n)}
CROSSREFS
Cf. A204217.
Sequence in context: A114495 A137398 A151439 * A007141 A278151 A090831
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 12 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 19 10:56 EDT 2024. Contains 371791 sequences. (Running on oeis4.)