A195028 a(n) = n*(14*n + 13).
0, 27, 82, 165, 276, 415, 582, 777, 1000, 1251, 1530, 1837, 2172, 2535, 2926, 3345, 3792, 4267, 4770, 5301, 5860, 6447, 7062, 7705, 8376, 9075, 9802, 10557, 11340, 12151, 12990, 13857, 14752, 15675, 16626, 17605, 18612, 19647, 20710, 21801, 22920, 24067, 25242
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..10000
- Index entries for linear recurrences with constant coefficients, signature (3,-3,1).
Crossrefs
Programs
-
Magma
[14*n^2 +13*n: n in [0..50]]; // Vincenzo Librandi, Oct 14 2011
-
PARI
a(n)=n*(14*n+13) \\ Charles R Greathouse IV, Jun 17 2017
Formula
a(n) = 14*n^2 + 13*n.
G.f.: x*(27+x)/(1-x)^3. - Colin Barker, Jan 09 2012
From Elmo R. Oliveira, Dec 30 2024: (Start)
E.g.f.: exp(x)*x*(27 + 14*x).
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3) for n >= 3. (End)
Extensions
Name suggested by Bruno Berselli, Oct 13 2011
Comments