A220083 a(n) = (15*n^2 + 9*n + 2)/2.
1, 13, 40, 82, 139, 211, 298, 400, 517, 649, 796, 958, 1135, 1327, 1534, 1756, 1993, 2245, 2512, 2794, 3091, 3403, 3730, 4072, 4429, 4801, 5188, 5590, 6007, 6439, 6886, 7348, 7825, 8317, 8824, 9346, 9883, 10435, 11002, 11584, 12181, 12793, 13420, 14062
Offset: 0
Links
- Bruno Berselli, Table of n, a(n) for n = 0..1000
- Index entries for linear recurrences with constant coefficients, signature (3,-3,1).
Programs
-
Magma
/* By first comment: */ A000566:=func
; [n*A000566(n)-(n-1)*A000566(n-1): n in [1..45]]; -
Magma
[(15*n^2 + 9*n + 2)/2: n in [0..50]]; // Vincenzo Librandi, Aug 18 2013
-
Maple
A220083:=n->(15*n^2 + 9*n + 2)/2; seq(A220083(n), n=0..100); # Wesley Ivan Hurt, Nov 14 2013
-
Mathematica
Table[(15 n^2 + 9 n + 2)/2, {n, 0, 45}] CoefficientList[Series[(1 + 10 x + 4 x^2) / (1 - x)^3, {x, 0, 50}], x] (* Vincenzo Librandi, Aug 18 2013 *)
-
Maxima
A220083(n):=(15*n^2 + 9*n + 2)/2$ makelist(A220083(n),n,0,20); /* Martin Ettl, Dec 11 2012 */
-
PARI
a(n)=(15*n^2+9*n+2)/2 \\ Charles R Greathouse IV, Oct 07 2015
Comments