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!)
A209307 Binomial self-convolution of sequence A209305. 2
1, 2, 8, 52, 492, 6172, 96572, 1810940, 39585980, 988367804, 27750071036, 865420762876, 29680685363772, 1110252095824444, 44984193111861116, 1962563143587356540, 91727727493033914044, 4572606297018521071292, 242169416254095528953852 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
E.g.f.: A(x)^2, where A(x) is the e.g.f. of the sequence A209305.
MATHEMATICA
(* Expansion of the generating series *) CoefficientList[Series[(InverseErf[(2Exp[x]-2+Exp[1]Sqrt[Pi]Erf[1])/(Exp[1]Sqrt[Pi])])^2, {x, 0, 40}], x]Table[n!, {n, 0, 40}]
(* Recurrence *)
a[n_] := a[n] = a[n-1]+2Sum[Binomial[n-2, k]a[k]b[n-2-k], {k, 0, n-2}];
a[1] = 1;
a[0] = 1;
b[n_] := Sum[Binomial[n, k]a[k+1]a[n-k+1], {k, 0, n}];
Table[Sum[Binomial[n, k]a[k]a[n - k], {k, 0, n}], {n, 0, 12}]
CROSSREFS
Sequence in context: A089467 A195192 A103239 * A323843 A132228 A305004
KEYWORD
nonn
AUTHOR
Emanuele Munarini, Jan 18 2013
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)