A102296 a(n) = (1/6)*(n+1)*(10*n^2 + 17*n + 12).
2, 13, 43, 102, 200, 347, 553, 828, 1182, 1625, 2167, 2818, 3588, 4487, 5525, 6712, 8058, 9573, 11267, 13150, 15232, 17523, 20033, 22772, 25750, 28977, 32463, 36218, 40252, 44575, 49197, 54128, 59378, 64957, 70875, 77142, 83768, 90763, 98137
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
[(1/6)*(n+1)*(10*n^2+17*n+12): n in [0..50]]; // Vincenzo Librandi, May 30 2011
-
Mathematica
LinearRecurrence[{4, -6, 4, -1}, {2, 13, 43, 102}, 50] (* Paolo Xausa, Mar 09 2024 *)
-
PARI
a(n) = (n+1)*(10*n^2+17*n+12)/6
Comments