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!)
A128326 G.f.: A(x) = 1 + G(G(G(x))), where G(x) = x + x*G(G(x)) is the g.f. of A030266. 4
1, 1, 3, 12, 57, 305, 1787, 11269, 75629, 535960, 3987913, 31021693, 251445581, 2117993712, 18499513147, 167246537937, 1562556275281, 15066167302802, 149737897716757, 1532313152898208, 16129331500727047 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Equals row 1 of table A128325.
LINKS
FORMULA
G.f. satisfies: A(x) = x/(1 - A( x/(1 - A(x)) )) when offset is taken to be 1. - Paul D. Hanna, Dec 20 2014
PROG
(PARI) {a(n)=local(A=1+x, B); for(i=0, n, A = 1 + x*A * subst(A, x, x*A+x*O(x^n))); B=A; B=subst(B, x, x*A+x*O(x^n)); polcoeff(B, n)}
for(n=0, 30, print1(a(n), ", "))
(PARI) {a(n)=local(A=1+x+x*O(x^n)); for(i=1, n, A = 1/subst(1-x*A, x, x/(1-x*A +x*O(x^n))) ); polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Cf. A030266; A128325 (table), A128327 (row 2), A128328 (row 3), A128329 (main diagonal).
Sequence in context: A291695 A117107 A159609 * A323631 A014333 A185618
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Mar 11 2007
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 28 05:00 EDT 2024. Contains 375477 sequences. (Running on oeis4.)