OFFSET
1,1
COMMENTS
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..10000
Index entries for linear recurrences with constant coefficients, signature (3,-3,1).
FORMULA
From R. J. Mathar, Mar 09 2009: (Start)
a(n) = 3*a(n-1) -3*a(n-2) +a(n-3).
G.f.: 2*x*(1013 + 1012*x)/(1-x)^3. (End)
E.g.f.: x*(2026 + 2025*x)*exp(x). - G. C. Greubel, Jan 28 2022
MATHEMATICA
LinearRecurrence[{3, -3, 1}, {2026, 8102, 18228}, 40]
Table[2025n^2+n, {n, 30}] (* Harvey P. Dale, Sep 12 2024 *)
PROG
(Magma) I:=[2026, 8102, 18228]; [n le 3 select I[n] else 3*Self(n-1)-3*Self(n-2)+1*Self(n-3): n in [1..40]];
(PARI) a(n)=n*(2025*n+1) \\ Charles R Greathouse IV, Dec 23 2011
(Sage) [n*(2025*n +1) for n in (1..40)] # G. C. Greubel, Jan 28 2022
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Feb 17 2009
STATUS
approved