A154377 a(n) = 25*n^2 + 2*n.
27, 104, 231, 408, 635, 912, 1239, 1616, 2043, 2520, 3047, 3624, 4251, 4928, 5655, 6432, 7259, 8136, 9063, 10040, 11067, 12144, 13271, 14448, 15675, 16952, 18279, 19656, 21083, 22560, 24087, 25664, 27291, 28968, 30695, 32472, 34299, 36176
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..10000
- Index entries for linear recurrences with constant coefficients, signature (3,-3,1).
Programs
-
Mathematica
LinearRecurrence[{3,-3,1},{27,104,231},50]
-
PARI
a(n)=25*n^2+2*n \\ Charles R Greathouse IV, Dec 23 2011
Formula
a(n) = 3*a(n-1) -3*a(n-2) +a(n-3).
G.f.: x*(27 + 23*x)/(1-x)^3.
E.g.f.: (25*x^2 + 27*x)*exp(x). - G. C. Greubel, Sep 15 2016
Comments