The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A309652 a(n) = [x^n] B(x)^n, where B(x) is g.f. of A000312. 3
1, 1, 9, 106, 1493, 24276, 448122, 9301251, 215547845, 5541171496, 156997349684, 4870353700532, 164366482285898, 5998207807965543, 235388194276592723, 9884482616014596546, 442206843338189113445, 20995082225203329126384, 1054247070579064423466016 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) ~ exp(exp(-1)) * n^(n+1).
MAPLE
B:= proc(n) option remember; n^n end:
b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i=1, B(n),
(h-> add(b(j, h)*b(n-j, i-h), j=0..n))(iquo(i, 2))))
end:
a:= n-> b(n$2):
seq(a(n), n=0..20); # Alois P. Heinz, Aug 23 2019
MATHEMATICA
Table[SeriesCoefficient[(1+Sum[k^k*x^k, {k, 1, n}])^n, {x, 0, n}], {n, 0, 20}]
CROSSREFS
Sequence in context: A052503 A261428 A122569 * A357295 A367789 A316145
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Aug 11 2019
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 May 19 23:42 EDT 2024. Contains 372703 sequences. (Running on oeis4.)