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 A081565 #14 Sep 08 2022 08:45:09 %S A081565 1,1,4,10,49,181,1039,4915,32134,182206,1330609,8706655,70012309, %T A081565 515822581,4517489344,36835737130,348313165249,3103526872081, %U A081565 31462900577419,303344232041215,3277823503679554,33930282904263406 %N A081565 Binomial transform of expansion of exp(3cosh(x)). %C A081565 Binomial transform of A081564. %H A081565 Vincenzo Librandi, <a href="/A081565/b081565.txt">Table of n, a(n) for n = 0..200</a> %F A081565 E.g.f.: exp(x) * exp(3*cosh(x))/e^3 = exp(3*cosh(x)+x-3). %p A081565 seq(coeff(series(exp(3*cosh(x)+x-3), x, n+1)*factorial(n), x, n), n = 0 .. 30); # _G. C. Greubel_, Aug 13 2019 %t A081565 With[{nn = 30}, CoefficientList[Series[Exp[3 Cosh[x] + x - 3], {x, 0, nn}], x] Range[0, nn]!] (* _Vincenzo Librandi_, Aug 08 2013 *) %o A081565 (PARI) my(x='x+O('x^30)); Vec(serlaplace( exp(3*cosh(x)+x-3) )) \\ _G. C. Greubel_, Aug 13 2019 %o A081565 (Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!( Exp(3*Cosh(x)+x-3) )); [Factorial(n-1)*b[n]: n in [1..m]]; // _G. C. Greubel_, Aug 13 2019 %o A081565 (Sage) [factorial(n)*( exp(3*cosh(x)+x-3) ).series(x,n+1).list()[n] for n in (0..30)] # _G. C. Greubel_, Aug 13 2019 %Y A081565 Cf. A081564, A081565. %K A081565 easy,nonn %O A081565 0,3 %A A081565 _Paul Barry_, Mar 22 2003