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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A126444 a(n) = Sum_{k=0..n-1} C(n-1,k)*a(k)*a(n-1-k)*2^k for n>0, with a(0)=1. 4
1, 1, 3, 19, 225, 4801, 185523, 13298659, 1815718305, 481790947681, 251592291767043, 260427247041910099, 536497603929547755585, 2204489516030261302702561, 18090090482887693483393912563 (list; graph; refs; listen; history; internal format)
OFFSET

0,3

COMMENTS

Generated by a generalization of a recurrence for the factorials.

FORMULA

a(n) = Sum_{k=0..n*(n-1)/2} A126470(n,k)*2^k.

Contribution from Paul D. Hanna (pauldhanna(AT)juno.com), Nov 22 2008: (Start)

E.g.f. satisfies: A'(x) = A(x)*A(2x) with A(0)=1;

the logarithmic derivative of e.g.f. A(x) equals A(2x). (End)

PROG

(PARI) a(n)=if(n==0, 1, sum(k=0, n-1, binomial(n-1, k)*a(k)*a(n-1-k)*2^k))

(PARI) {a(n)=local(A=1+x); for(i=0, n, A=1+intformal(A*subst(A, x, 2*x+x*O(x^n)))); n!*polcoeff(A, n, x)} [From Paul D. Hanna (pauldhanna(AT)juno.com), Nov 22 2008]

CROSSREFS

Cf. A126470.

Sequence in context: A136504 A003111 A160888 * A198046 A001929 A157675

Adjacent sequences:  A126441 A126442 A126443 * A126445 A126446 A126447

KEYWORD

nonn

AUTHOR

Paul D. Hanna (pauldhanna(AT)juno.com), Jan 01 2007

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 16 03:44 EST 2012. Contains 205860 sequences.