a(n) = -630*a(n-5) + 35*Sum_{k=1..4} a(n-k). - Wesley Ivan Hurt, May 05 2021
MATHEMATICA
CoefficientList[Series[(1+x)*(1-x^5)/(1-36*x+665*x^5-630*x^6), {x, 0, 20}], x] (* G. C. Greubel, Aug 01 2017 *)
coxG[{5, 630, -35}] (* The coxG program is at A169452 *) (* Harvey P. Dale, Aug 31 2018 *)
PROG
(PARI) my(x='x+O('x^20)); Vec((1+x)*(1-x^5)/(1-36*x+665*x^5-630*x^6)) \\ G. C. Greubel, Aug 01 2017
(Magma) R<x>:=PowerSeriesRing(Integers(), 20); Coefficients(R!( (1+x)*(1-x^5)/(1-36*x+665*x^5-630*x^6) )); // G. C. Greubel, May 22 2019
(SageMath) ((1+x)*(1-x^5)/(1-36*x+665*x^5-630*x^6)).series(x, 20).coefficients(x, sparse=False) # G. C. Greubel, May 22 2019
(GAP) a:=[37, 1332, 47952, 1726272, 62145126];; for n in [6..20] do a[n]:=18*(a[n-1]+a[n-2] +a[n-3]+a[n-4] -18*a[n-5]); od; Concatenation([1], a); # G. C. Greubel, May 22 2019