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”).

A293491
a(n) = n! * [x^n] exp((n+2)*x)*BesselI(0,2*x).
1
1, 3, 18, 155, 1734, 23877, 390804, 7417377, 160256070, 3885021569, 104465601756, 3086353547433, 99399100528924, 3466411543407555, 130151205663179112, 5235127829223881895, 224609180728848273990, 10239557195235638377449, 494317596005491398892620, 25192788307121307053168673
OFFSET
0,2
COMMENTS
The n-th term of the n-th binomial transform of A000984.
LINKS
FORMULA
a(n) = [x^n] 1/sqrt((1 - n*x)*(1 - (n + 4)*x)).
a(n) = Sum_{k=0..n} binomial(n,k)*binomial(2*k,k)*n^(n-k).
a(n) ~ exp(2) * BesselI(0,2) * n^n. - Vaclav Kotesovec, Oct 16 2017
MATHEMATICA
Table[n! SeriesCoefficient[Exp[(n + 2) x] BesselI[0, 2 x], {x, 0, n}], {n, 0, 19}]
Table[SeriesCoefficient[1/Sqrt[(1 - n x) (1 - (n + 4) x)], {x, 0, n}], {n, 0, 19}]
Join[{1}, Table[Sum[Binomial[n, k] Binomial[2 k, k] n^(n - k), {k, 0, n}], {n, 1, 19}]]
Table[(n + 2)^n HypergeometricPFQ[{1/2 - n/2, -n/2}, {1}, 4/(2 + n)^2], {n, 0, 19}]
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Oct 10 2017
STATUS
approved