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!)
A206638 G.f. satisfies: A(x) = Sum_{n>=0} 3^n*A(x)^n * x^(n^2) / Product_{k=1..n} (1 - 3*x^k)*(1 - x^k*A(x)). 1
1, 3, 21, 147, 1074, 8076, 62454, 494292, 3990378, 32756142, 272715870, 2297982828, 19563641319, 168036314862, 1454458825605, 12674387617266, 111104771086812, 979101922849230, 8668964794053837, 77080072176742422, 687976906966730076, 6161811541538326680 (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} 3*x^n*A(x)^n / Product_{k=1..n} (1 - 3*x^k).
(2) A(x) = 1 + Sum_{n>=1} 3^n*x^n*A(x) / Product_{k=1..n} (1 - x^k*A(x)).
EXAMPLE
G.f.: A(x) = 1 + 3*x + 21*x^2 + 147*x^3 + 1074*x^4 + 8076*x^5 +...
where the g.f. satisfies:
(0) A(x) = 1 + 3*x*A(x)/((1-3*x)*(1-x*A(x))) + 9*x^4*A(x)^2/((1-3*x)*(1-3*x^2)*(1-x*A(x))*(1-x^2*A(x))) + 27*x^9*A(x)^3/((1-3*x)*(1-3*x^2)*(1-3*x^3)*(1-x*A(x))*(1-x^2*A(x))*(1-x^3*A(x))) +...
(1) A(x) = 1 + 3*x*A(x)/(1-3*x) + 3*x^2*A(x)^2/((1-3*x)*(1-3*x^2)) + 3*x^3*A(x)^3/((1-3*x)*(1-3*x^2)*(1-3*x^3)) +...
(2) A(x) = 1 + 3*x*A(x)/(1-x*A(x)) + 9*x^2*A(x)/((1-x*A(x))*(1-x^2*A(x))) + 27*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)*3^m*A^m/prod(k=1, m, (1-3*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, 3*x^m*A^m/prod(k=1, m, (1-3*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, 3^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: A323203 A169634 A088088 * A357652 A037761 A037649
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 23 23:26 EDT 2024. Contains 371917 sequences. (Running on oeis4.)