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 A362177 #25 Jul 13 2024 02:14:55 %S A362177 1,1,-5,-17,73,481,-1709,-19025,52753,965953,-1882709,-59839889, %T A362177 64418905,4372890913,-651783677,-367974620369,-309314089439, %U A362177 35016249465985,66566286588763,-3715188655737617,-11303745326856599,434518893361657441,1858790804545588915 %N A362177 Expansion of e.g.f. exp(x * (1-3*x)). %H A362177 Winston de Greef, <a href="/A362177/b362177.txt">Table of n, a(n) for n = 0..628</a> %F A362177 a(n) = a(n-1) - 6*(n-1)*a(n-2) for n > 1. %F A362177 a(n) = n! * Sum_{k=0..floor(n/2)} (-3)^k / (k! * (n-2*k)!). %F A362177 a(n) = (-sqrt(3))^n * Hermite(n, 1/(2*sqrt(3))). - _G. C. Greubel_, Jul 12 2024 %t A362177 With[{m=30}, CoefficientList[Series[Exp[x-3*x^2], {x,0,m}], x]*Range[0, m]!] (* _G. C. Greubel_, Jul 12 2024 *) %o A362177 (PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(x*(1-3*x)))) %o A362177 (Magma) %o A362177 R<x>:=PowerSeriesRing(Rationals(), 30); %o A362177 Coefficients(R!(Laplace( Exp(x-3*x^2) ))); // _G. C. Greubel_, Jul 12 2024 %o A362177 (SageMath) %o A362177 [(-sqrt(3))^n*hermite(n, 1/(2*sqrt(3))) for n in range(31)] # _G. C. Greubel_, Jul 12 2024 %Y A362177 Column k=6 of A362277. %Y A362177 Sequences with e.g.f = exp(x + q*x^2): A158968 (q=-9), A158954 (q=-4), this sequence (q=-3), A362176 (q=-2), A293604 (q=-1), A000012 (q=0), A047974 (q=1), A115329 (q=2), A293720 (q=4). %K A362177 sign,easy %O A362177 0,3 %A A362177 _Seiichi Manyama_, Apr 10 2023