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!)
A217794 G.f. satisfies: A(x/A(x)^3) = 1 + x*A(x)^2. 0
1, 1, 5, 50, 705, 12225, 244076, 5408850, 130087875, 3345893240, 91094645450, 2606026116783, 77908655011205, 2423758771361300, 78209895085897845, 2610730390260224350, 89962745874096081282, 3194452580744306873560, 116712765368638543260825 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
More generally, if g.f. A(x) satisfies: A(x/A(x)^k) = 1 + x*A(x)^m, then
A(x) = 1 + x*G(x)^(m+k) where G(x) = A(x*G(x)^k) and G(x/A(x)^k) = A(x);
thus a(n) = [x^(n-1)] ((m+k)/(m+k*n))*A(x)^(m+k*n) for n>=1 with a(0)=1.
LINKS
FORMULA
G.f.: A(x) = 1 + x*G(x)^5 where G(x) = A(x*G(x)^3) and A(x) = G(x/A(x)^3).
a(n) = [x^(n-1)] 5*A(x)^(3*n+2)/(3*n+2) for n>=1 with a(0)=1; i.e., a(n) equals the coefficient of x^(n-1) in 5*A(x)^(3*n+2)/(3*n+2) for n>=1 (see comment).
EXAMPLE
G.f.: A(x) = 1 + x + 5*x^2 + 50*x^3 + 705*x^4 + 12225*x^5 + 244076*x^6 +...
Related expansions:
A(x)^2 = 1 + 2*x + 11*x^2 + 110*x^3 + 1535*x^4 + 26360*x^5 + 522152*x^6 +...
A(x)^3 = 1 + 3*x + 18*x^2 + 181*x^3 + 2505*x^4 + 42630*x^5 + 837968*x^6 +...
A(x/A(x)^3) = 1 + x + 2*x^2 + 11*x^3 + 110*x^4 + 1535*x^5 + 26360*x^6 +...
Note that A(x) = 1 + x*G(x)^5 where G(x) = A(x*G(x)^3):
G(x) = 1 + x + 8*x^2 + 107*x^3 + 1840*x^4 + 36973*x^5 + 828944*x^6 +...
G(x)^3 = 1 + 3*x + 27*x^2 + 370*x^3 + 6378*x^4 + 127608*x^5 +...
G(x)^5 = 1 + 5*x + 50*x^2 + 705*x^3 + 12225*x^4 + 244076*x^5 +...
To illustrate the formula a(n) = [x^(n-1)] 5*A(x)^(3*n+2)/(3*n+2),
form a table of coefficients in A(x)^(3*n+2) as follows:
A^5: [(1), 5, 35, 360, 4930, 82576, 1599555, 34576120, ...];
A^8: [1,(8), 68, 736, 10050, 165336, 3139976, 66675504, ...];
A^11: [1, 11,(110), 1265, 17435, 283712, 5299448, 110675125, ...];
A^14: [1, 14, 161,(1974), 27706, 448882, 8275827, 170250124, ...];
A^17: [1, 17, 221, 2890,(41565), 674373, 12316568, 250050450, ...];
A^20: [1, 20, 290, 4040, 59795,(976304), 17727230, 355906600, ...]; ...
in which the main diagonal forms the initial terms of this sequence:
[5/5*(1), 5/8*(8), 5/11*(110), 5/14*(1974), 5/17*(41565), 5/20*(976304), ...].
PROG
(PARI) {a(n)=local(A=1+x, G); for(i=0, n, G=(serreverse(x/(A+x*O(x^n))^3)/x)^(1/3); A=1+x*G^5); polcoeff(A, n)}
(PARI) /* This sequence is generated when k=3, m=2: A(x/A(x)^k) = 1 + x*A(x)^m */
{a(n, k=3, m=2)=local(A=sum(i=0, n-1, a(i, k, m)*x^i)+x*O(x^n)); if(n==0, 1, polcoeff((m+k)/(m+k*n)*A^(m+k*n), n-1))}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
Sequence in context: A047736 A185272 A141316 * A347022 A093146 A049393
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 11 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 August 3 14:35 EDT 2024. Contains 374894 sequences. (Running on oeis4.)