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

A351883
Expansion of e.g.f. 1 / (1 - x)^sech(x).
1
1, 1, 2, 3, 6, 35, 285, 2044, 13804, 108093, 1083405, 12281896, 143452386, 1763156031, 23845410407, 353626471808, 5579871336488, 92609430408361, 1627509065584185, 30379312334903408, 598533509334403470, 12366674489588950555, 267527916985316556019
OFFSET
0,3
FORMULA
a(0) = 1; a(n) = -Sum_{k=1..n} (-1)^k * binomial(n-1,k-1) * A009435(k) * a(n-k).
a(n) ~ n! / (Gamma(1/cosh(1)) * n^(1 - 1/cosh(1))). - Vaclav Kotesovec, Feb 24 2022
MATHEMATICA
nmax = 22; CoefficientList[Series[1/(1 - x)^Sech[x], {x, 0, nmax}], x] Range[0, nmax]!
PROG
(PARI) my(x='x+O('x^30)); Vec(serlaplace(1/(1-x)^(1/cosh(x)))) \\ Michel Marcus, Feb 23 2022
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 23 2022
STATUS
approved