This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A352648 #20 Jun 25 2025 06:30:15 %S A352648 1,2,8,54,480,5290,70080,1083614,19145728,380552274,8404669440, %T A352648 204182993542,5411361939456,155365918497530,4803852288901120, %U A352648 159142710151610670,5623576097060290560,211138456468635968674,8393550198348236193792,352212802264773650385110 %N A352648 Expansion of e.g.f. 1/(1 - 2 * x * cosh(x)). %F A352648 a(0) = 1; a(n) = 2 * Sum_{k=0..floor((n-1)/2)} (2*k+1) * binomial(n,2*k+1) * a(n-2*k-1). %F A352648 a(n) ~ n! / ((1 + r * sqrt(1 - 4*r^2)) * r^n), where r = 0.452787214835453627588998503316635625709288535855800416726... is the root of the equation 2*r*cosh(r) = 1. - _Vaclav Kotesovec_, Mar 27 2022 %F A352648 a(n) = Sum_{k=0..n} 2^k * k! * A185951(n,k). - _Seiichi Manyama_, Jun 25 2025 %t A352648 With[{m = 19}, Range[0, m]! * CoefficientList[Series[1/(1 - 2*x*Cosh[x]), {x, 0, m}], x]] (* _Amiram Eldar_, Mar 26 2022 *) %o A352648 (PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(1/(1-2*x*cosh(x)))) %o A352648 (PARI) a(n) = if(n==0, 1, 2*sum(k=0, (n-1)\2, (2*k+1)*binomial(n, 2*k+1)*a(n-2*k-1))); %Y A352648 Cf. A205571, A352649. %Y A352648 Cf. A185951. %K A352648 nonn %O A352648 0,2 %A A352648 _Seiichi Manyama_, Mar 25 2022