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!)
A217485 Convolution of the numbers in sequence A080253. 5
1, 6, 43, 396, 4565, 64146, 1073919, 20996376, 471081385, 11947911966, 338204687315, 10570101018276, 361458024882045, 13421571912745386, 537661560385125031, 23108777539028187696, 1060571767117824260945, 51760585513634983767606 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = sum(c(k)*c(n.k),k=0..n), where c(n) = A080253(n).
a(n) ~ n! * 2^(n + 1/2) / (log(2))^(n+1). - Vaclav Kotesovec, Nov 27 2017
MATHEMATICA
t[n_] := Sum[StirlingS2[n, k] k!, {k, 0, n}]; c[n_] := Sum[Binomial[n, k] 2^k t[k], {k, 0, n}]; Table[Sum[c[k]c[n-k], {k, 0, n}], {n, 0, 100}]
PROG
(Maxima) t(n):=sum(stirling2(n, k)*k!, k, 0, n);
c(n):=sum(binomial(n, k)*2^k*t(k), k, 0, n);
makelist(sum(c(k)*c(n-k), k, 0, n), n, 0, 40);
CROSSREFS
Sequence in context: A090010 A176732 A062266 * A337555 A290783 A159604
KEYWORD
nonn
AUTHOR
Emanuele Munarini, Oct 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 24 15:57 EDT 2024. Contains 371961 sequences. (Running on oeis4.)