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!)
A113662 Self-convolution of A000699. 8
1, 2, 9, 62, 566, 6372, 84837, 1300214, 22511322, 434226300, 9231983850, 214481625516, 5406323440492, 146963638311880, 4286068830850797, 133501081493969574, 4423404073559930162, 155359770700317171084 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f. satisfies: A(x) = (1 + x*d/dx[x*A(x)] )^2.
a(n) ~ 2^(n + 5/2) * n^(n+1) / exp(n+1). - Vaclav Kotesovec, Oct 23 2020
EXAMPLE
G.f. = 1 + 2*x + 9*x^2 + 62*x^3 + 566*x^4 + 6372*x^5 + 84837*x^6 + 1300214*x^7 + ...
PROG
(PARI) {a(n)=local(A=1+x*O(x^n)); for(i=1, n, A=(1+x*deriv(x*A))^2); polcoeff(A, n, x)}
(PARI)
A000699_seq(N) = {
my(a = vector(N)); a[1] = 1;
for (n=2, N, a[n] = sum(k=1, n-1, (2*k-1)*a[k]*a[n-k])); a;
};
Vec(sqr(Ser(A000699_seq(N)))) \\ Gheorghe Coserea, Jan 23 2017
CROSSREFS
Sequence in context: A268450 A146887 A173498 * A352326 A052820 A213528
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 04 2005
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 25 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)