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 A009121 #27 Sep 08 2022 08:44:37 %S A009121 1,0,1,6,25,100,481,2954,20721,151848,1146721,9111982,77652169, %T A009121 710421452,6891125697,69961213170,738718169569,8108554524112, %U A009121 92647353941569,1101958783026134,13616813607795321,174287243264606388,2304515271134124577,31424734896799742170 %N A009121 Expansion of e.g.f. cosh(exp(x)*x). %H A009121 Iain Fox, <a href="/A009121/b009121.txt">Table of n, a(n) for n = 0..541</a> %p A009121 a:= n-> add(`if`(k::odd, 0, binomial(n, k)*k^(n-k)), k=0..n): %p A009121 seq(a(n), n=0..25); # _Alois P. Heinz_, Jan 15 2018 %t A009121 With[{nn=30},CoefficientList[Series[Cosh[Exp[x]*x],{x,0,nn}],x] Range[ 0,nn]!] (* _Harvey P. Dale_, Dec 28 2015 *) %o A009121 (PARI) first(n) = x='x+O('x^n); Vec(serlaplace(cosh(exp(x)*x))) \\ _Iain Fox_, Dec 23 2017 %o A009121 (Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!(Cosh(x*Exp(x)))); [Factorial(n-1)*b[n]: n in [1..m]]; // _G. C. Greubel_, Jul 26 2018 %Y A009121 Cf. A000248, A009017, A009448, A009565, A009635, A009768. %K A009121 nonn,easy %O A009121 0,4 %A A009121 _R. H. Hardin_ %E A009121 Extended and signs tested by _Olivier Gérard_, Mar 15 1997 %E A009121 Definition clarified and prior Mathematica program replaced by _Harvey P. Dale_, Dec 28 2015