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!)
A215128 G.f.: Sum_{n>=0} d^n/dx^n (x + x^2)^(2*n) / n!. 3
1, 2, 12, 64, 370, 2184, 13132, 79944, 491238, 3040400, 18926336, 118369368, 743199184, 4681668488, 29574616440, 187281906512, 1188494457492, 7556371963488, 48123031011036, 306929964849200, 1960230225450420, 12534313062502440, 80236414444623240 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Compare to: Sum_{n>=0} d^n/dx^n x^(2*n)/n! = 1/sqrt(1-4*x).
LINKS
FORMULA
a(n) = (n+1)*A214372(n+1), where G(x) = x + (G(x) + G(x)^2)^2 is the g.f. of A214372.
EXAMPLE
G.f.: A(x) = 1 + 2*x + 12*x^2 + 64*x^3 + 370*x^4 + 2184*x^5 + 13132*x^6 +...
such that, by definition:
A(x) = 1 + d/dx (x+x^2)^2 + d^2/dx^2 (x+x^2)^4/2! + d^3/dx^3 (x+x^2)^6/3! + d^4/dx^4 (x+x^2)^8/4! + d^5/dx^5 (x+x^2)^10/5! +...
PROG
(PARI) {Dx(n, F)=local(D=F); for(i=1, n, D=deriv(D)); D}
{a(n)=local(A=x); A=1+sum(m=1, n, Dx(m, x^(2*m)*(1+x+x*O(x^n))^(2*m)/m!)); polcoeff(A, n)}
for(n=0, 25, print1(a(n), ", "))
CROSSREFS
Sequence in context: A087635 A180038 A052896 * A190155 A025599 A162973
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Aug 04 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 18 18:58 EDT 2024. Contains 371781 sequences. (Running on oeis4.)