A157760 a(n) = 2809*n^2 - 1000*n + 89.
1898, 9325, 22370, 41033, 65314, 95213, 130730, 171865, 218618, 270989, 328978, 392585, 461810, 536653, 617114, 703193, 794890, 892205, 995138, 1103689, 1217858, 1337645, 1463050, 1594073, 1730714, 1872973, 2020850, 2174345
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:=[1898, 9325, 22370]; [n le 3 select I[n] else 3*Self(n-1)-3*Self(n-2)+1*Self(n-3): n in [1..50]];
-
Mathematica
LinearRecurrence[{3,-3,1},{1898,9325,22370},50]
-
PARI
a(n) = 2809*n^2 - 1000*n + 89;
Formula
G.f.: x*(1898 + 3631*x + 89*x^2)/(1 - x)^3.
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3).
Comments