[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A066053
Stirling transform of A002457.
2
1, 6, 36, 236, 1686, 13028, 108078, 956348, 8976708, 88962160, 927129786, 10125636716, 115543526476, 1373933166848, 16985192456410, 217851008508220, 2893517713599370, 39732264695056772, 563187218351672330, 8229159647194683140, 123795221970087313340
OFFSET
0,2
LINKS
FORMULA
a(n) = sum(stirling2(n, k)*(2*k + 2)!/(2*k!*(k + 1)!), k = 0..n), n = 0, 1, ...;
E.g.f.: exp(2*exp(x) - 2)*(BesselI(0, 2*exp(x) - 2) + 4*BesselI(0, 2*exp(x) - 2)*(exp(x) - 1) + 4*(exp(x) - 1)*BesselI(1, 2*exp(x) - 2)).
MAPLE
b:= proc(n, m) option remember; `if`(n=0,
(2*m+1)!/m!^2, m*b(n-1, m)+b(n-1, m+1))
end:
a:= n-> b(n, 0):
seq(a(n), n=0..23); # Alois P. Heinz, Jun 23 2023
MATHEMATICA
Table[Sum[StirlingS2[n, k]*(2*k+2)!/(2*k!*(k+1)!), {k, 0, n}], {n, 0, 20}] (* Vaclav Kotesovec, Jul 01 2018 *)
CROSSREFS
Sequence in context: A057395 A259819 A213282 * A344250 A153824 A001286
KEYWORD
nonn
AUTHOR
Karol A. Penson, Nov 30 2001
STATUS
approved