OFFSET
0,3
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..10000
Index entries for linear recurrences with constant coefficients, signature (14,-91,364,-1001,2002,-3003,3432,-3003,2002,-1001,364,-91,14,-1).
FORMULA
From G. C. Greubel, Mar 20 2025: (Start)
G.f.: x*(1 +4098*x +739806*x^2 +22766810*x^3 +211640895*x^4 +752810148*x^5 +1137586884*x^6 +752810148*x^7 +211640895*x^8 +22766810*x^9 +739806*x^10 +4098*x^11 + x^12)/(1-x)^14.
E.g.f.: (1/2)*x*(2 +4110*x +261650*x^2 +2532540*x^3 +7508502*x^4 +9321312*x^5 +5715424*x^6 +1899612*x^7 +359502*x^8 +39325*x^9 +2431*x^10 +78*x^11 +x^12)*exp(x). (End)
MATHEMATICA
Table[n^5 (n^8+1)/2, {n, 0, 30}] (* Harvey P. Dale, Jan 10 2013 *)
PROG
(Magma) [n^5*(n^8+1)/2: n in [0..30]]; // Vincenzo Librandi, Aug 29 2011
(SageMath)
def A168462(n): return n^5*(n^8+1)//2
print([A168462(n) for n in range(31)]) # G. C. Greubel, Mar 20 2025
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Dec 11 2009
STATUS
approved
