cp's OEIS Frontend

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.

A082309 Expansion of e.g.f.: (1+x)*exp(5*x)*cosh(x).

This page as a plain text file.
%I A082309 #14 Sep 08 2022 08:45:10
%S A082309 1,6,36,218,1336,8280,51776,325792,2057856,13023104,82456576,
%T A082309 521826816,3298727936,20822038528,131210919936,825373859840,
%U A082309 5182772248576,32487861092352,203308891897856,1270289732337664,7924975155019776
%N A082309 Expansion of e.g.f.: (1+x)*exp(5*x)*cosh(x).
%C A082309 Binomial transform of A082307.
%H A082309 G. C. Greubel, <a href="/A082309/b082309.txt">Table of n, a(n) for n = 0..1000</a>
%H A082309 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (20,-148,480,-576).
%F A082309 a(n) = (A081106(n) + A079028(n))/2.
%F A082309 a(n) = ((n+4)*4^(n-1) + (n+6)*6^(n-1))/2.
%F A082309 G.f.: ((1-5*x)/(1-6*x)^2 + (1-3*x)/(1-4*x)^2)/2.
%F A082309 From _Harvey P. Dale_, Aug 27 2012: (Start)
%F A082309 E.g.f.: (1+x)*exp(5*x)*cosh(x).
%F A082309 a(n) = 20*a(n-1) - 148*a(n-2) + 480*a(n-3) - 576*a(n-4), n>3. (End)
%t A082309 With[{nn=30},CoefficientList[Series[(1+x)Exp[5x]Cosh[x],{x,0,nn}],x]Range[0,nn]!] (* or *) LinearRecurrence[{20,-148,480,-576},{1,6,36,218},30] (* _Harvey P. Dale_, Aug 27 2012 *)
%o A082309 (PARI) x='x+O('x^30); Vec(serlaplace((1+x)*exp(5*x)*cosh(x))) \\ _G. C. Greubel_, Sep 16 2018
%o A082309 (Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!((1+x)*Exp(5*x)*Cosh(x))); [Factorial(n-1)*b[n]: n in [1..m]]; // _G. C. Greubel_, Sep 16 2018
%Y A082309 Cf. A082308, A082307, A082306, A082305.
%K A082309 easy,nonn
%O A082309 0,2
%A A082309 _Paul Barry_, Apr 09 2003
%E A082309 Definition clarified by _Harvey P. Dale_, Aug 27 2012