A304993 a(n) = n*(n + 1)*(7*n + 5)/6.
0, 4, 19, 52, 110, 200, 329, 504, 732, 1020, 1375, 1804, 2314, 2912, 3605, 4400, 5304, 6324, 7467, 8740, 10150, 11704, 13409, 15272, 17300, 19500, 21879, 24444, 27202, 30160, 33325, 36704, 40304, 44132, 48195, 52500, 57054, 61864, 66937, 72280, 77900, 83804, 89999, 96492
Offset: 0
Links
- Colin Barker, Table of n, a(n) for n = 0..1000
- Index entries for linear recurrences with constant coefficients, signature (4,-6,4,-1).
Crossrefs
Programs
-
Mathematica
Table[n (n + 1) (7 n + 5)/6, {n, 0, 50}] LinearRecurrence[{4,-6,4,-1},{0,4,19,52},50] (* Harvey P. Dale, May 03 2023 *)
-
PARI
concat(0, Vec(x*(4 + 3*x)/(1 - x)^4 + O(x^40))) \\ Colin Barker, May 25 2018
Comments