OFFSET
1,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Index entries for linear recurrences with constant coefficients, signature (4,-6,4,-1).
FORMULA
From R. J. Mathar, May 31 2009: (Start)
a(n) = n*(2*n^2 + 5*n + 9)/2.
a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4).
G.f.: x*(8 - 5*x + 3*x^2)/(1-x)^4. (End)
a(n) = A162261(n) + 8*n. - L. Edson Jeffery, Oct 12 2012
E.g.f.: (1/2)*x*(16 + 11*x + 2*x^2)*exp(x). - G. C. Greubel, Jan 21 2025
MATHEMATICA
CoefficientList[Series[(8-5*x+3*x^2)/(1-x)^4, {x, 0, 40}], x] (* Vincenzo Librandi, Jun 30 2012 *)
PROG
(Magma) I:=[8, 27, 63, 122]; [n le 4 select I[n] else 4*Self(n-1)-6*Self(n-2)+4*Self(n-3)-Self(n-4): n in [1..50]]; // Vincenzo Librandi, Jun 30 2012
(Python)
def A151675(n): return n*(2*n**2 +5*n+9)//2
print([A151675(n) for n in range(1, 51)]) # G. C. Greubel, Jan 21 2025
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, May 31 2009
EXTENSIONS
Extended by R. J. Mathar, May 31 2009
STATUS
approved