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

A321848
E.g.f.: exp(x/(1-5*x)).
6
1, 1, 11, 181, 3961, 108101, 3532651, 134415961, 5834249681, 284391878761, 15378011541451, 913297438474301, 59086483931657161, 4135583008765323181, 311324086814794408811, 25079793551003791168801, 2152597370423901820231201, 196089415332225446044417361
OFFSET
0,3
COMMENTS
For k = 2,3,4,... the difference a(n+k) - a(n) is divisible by k.
LINKS
Norihiro Nakashima, Shuhei Tsujie, Enumeration of Flats of the Extended Catalan and Shi Arrangements with Species, arXiv:1904.09748 [math.CO], 2019.
FORMULA
a(n) = Sum_{k=0..n} 5^(n-k)*(n!/k!)*binomial(n-1, k-1).
Recurrence: a(n) = (10*n-9)*a(n-1) - 25*(n-2)*(n-1)*a(n-2).
a(n) ~ n! * exp(2*sqrt(n/5) - 1/10) * 5^(n - 1/4) / (2 * sqrt(Pi) * n^(3/4)). - Vaclav Kotesovec, Nov 21 2018
MAPLE
seq(coeff(series(factorial(n)*exp(x/(1-5*x)), x, n+1), x, n), n = 0 .. 17); # Muniru A Asiru, Nov 24 2018
MATHEMATICA
a[n_] := Sum[5^(n - k)*n!/k!*Binomial[n - 1, k - 1], {k, 0, n}]; Array[a, 20, 0] (* or *) a[0] = a[1] = 1; a[n_] := a[n] = (10 n - 9)*a[n - 1] - 25(n - 2)(n - 1)*a[n - 2]; Array[a, 20, 0] (* Amiram Eldar, Nov 19 2018 *)
With[{nn=20}, CoefficientList[Series[Exp[x/(1-5x)], {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Oct 19 2024 *)
PROG
(PARI) my(x='x + O('x^20)); Vec(serlaplace(exp(x/(1-5*x)))) \\ Michel Marcus, Nov 25 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Ludovic Schwob, Nov 19 2018
STATUS
approved