login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A036675 G.f. satisfies A(x) = 1 + x*A(x)^2*A(x^2). 0
1, 1, 2, 6, 18, 59, 198, 690, 2450, 8878, 32632, 121518, 457262, 1736526, 6646340, 25613086, 99298674, 387021728, 1515594560, 5960406102, 23530528512, 93216984177, 370450977206, 1476458287082, 5900150928510, 23635544130948 (list; graph; refs; listen; history; internal format)
OFFSET

0,3

FORMULA

G.f. 1/(1-z/(1-z/(1-z/(...)))) where z=x/(1-x^2/(1-x^2)) (continued fraction); more generally g.f. C(x/(1-x^2/(1-x^2))) where C(x) is the g.f. for the Catalan numbers (A000108). [Joerg Arndt, Mar 18 2011]

MAPLE

A := 1; f := proc(n) global A; coeff(series( 1+x*(A*subs(x=x^2, A)), x, n+1), x, n); end; for n from 1 to 50 do A := series(A+f(n)*x^n, x, n +1); od: A;

PROG

(PARI) a(n)=local(A, m); if(n<0, 0, m=2; A=1+O(x); while(m<=n+1, m*=2; A=2/(1+sqrt(1-4*x*subst(A, x, x^2)))); polcoeff(A, n))

CROSSREFS

Sequence in context: A150041 A190790 A150042 * A121320 A148460 A148461

Adjacent sequences:  A036672 A036673 A036674 * A036676 A036677 A036678

KEYWORD

nonn,easy

AUTHOR

N. J. A. Sloane (njas(AT)research.att.com).

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 23:53 EST 2012. Contains 205860 sequences.