OFFSET
0,3
COMMENTS
Catalan transform of A000142 (factorial numbers).
From Peter Bala, Jan 27 2020: (Start)
This sequence is the main diagonal of the lower triangular array formed by putting the sequence of factorial numbers in the first column (k = 0) of the array and then completing the triangle using the relation T(n,k) = T(n-1,k) + T(n,k-1) for k >= 1.
1
1 1
2 3 3
6 9 12 12
24 33 45 57 57
120 153 198 255 312 312
...
Alternatively, the sequence can be obtained by multiplying the sequence of factorial numbers by the array A106566.
(End)
FORMULA
G.f.: 1 /(1 - x*c(x)/(1 - x*c(x)/(1 - 2*x*c(x)/(1 - 2*x*c(x)/(1 - 3*x*c(x)/(1 - 3*x*c(x)/(1 - ...))))))), a continued fraction, where c(x) = g.f. of Catalan numbers (A000108).
Sum_{n>=0} a(n)*(x*(1 - x))^n = g.f. of A000142.
a(n) = (1/n) * Sum_{k=1..n} binomial(2*n-k-1,n-k)*k*k! for n > 0.
a(n) ~ exp(1) * n!. - Vaclav Kotesovec, Aug 10 2019
MATHEMATICA
nmax = 23; CoefficientList[Series[Sum[k! ((1 - Sqrt[1 - 4 x])/2)^k, {k, 0, nmax}], {x, 0, nmax}], x]
nmax = 23; CoefficientList[Series[1/(1 + ContinuedFractionK[-Floor[(k + 1)/2] (1 - Sqrt[1 - 4 x])/2, 1, {k, 1, nmax}]), {x, 0, nmax}], x]
Join[{1}, Table[1/n Sum[Binomial[2n - k - 1, n - k] k k!, {k, n}], {n, 23}]]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 10 2019
STATUS
approved