A154514 a(n) = 648*n^2 - 72*n + 1.
577, 2449, 5617, 10081, 15841, 22897, 31249, 40897, 51841, 64081, 77617, 92449, 108577, 126001, 144721, 164737, 186049, 208657, 232561, 257761, 284257, 312049, 341137, 371521, 403201, 436177, 470449, 506017, 542881, 581041, 620497, 661249
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
-
Magma
I:=[577, 2449, 5617]; [n le 3 select I[n] else 3*Self(n-1)-3*Self(n-2)+1*Self(n-3): n in [1..50]]; // Vincenzo Librandi, Jan 30 2012
-
Mathematica
Table[648n^2-72n+1,{n,50}] (* Harvey P. Dale, Apr 22 2011 *)
-
PARI
a(n)=648*n^2-72*n+1 \\ Charles R Greathouse IV, Dec 27 2011
Formula
G.f.: x*(-577 - 718*x - x^2)/(x-1)^3. - Harvey P. Dale, Apr 22 2011
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3). - Vincenzo Librandi, Jan 30 2012
Comments