A174814 a(n) = n*(n+1)*(5*n+1)/3.
0, 4, 22, 64, 140, 260, 434, 672, 984, 1380, 1870, 2464, 3172, 4004, 4970, 6080, 7344, 8772, 10374, 12160, 14140, 16324, 18722, 21344, 24200, 27300, 30654, 34272, 38164, 42340, 46810, 51584, 56672, 62084, 67830, 73920, 80364, 87172, 94354, 101920, 109880
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..2000
- Index entries for linear recurrences with constant coefficients, signature (4,-6,4,-1).
Programs
-
Magma
[n*(n+1)*(5*n+1)/3: n in [0..50]]; // Vincenzo Librandi, May 30 2011
-
Mathematica
Table[1/3 n (1+n) (1+5 n), {n,0,50}] (* Harvey P. Dale, Feb 25 2011 *)
-
PARI
a(n) = n*(n+1)*(5*n+1)/3 \\ Charles R Greathouse IV, May 30 2011
Comments