login
A038867
(n+5)^3 - n^3.
1
125, 215, 335, 485, 665, 875, 1115, 1385, 1685, 2015, 2375, 2765, 3185, 3635, 4115, 4625, 5165, 5735, 6335, 6965, 7625, 8315, 9035, 9785, 10565, 11375, 12215, 13085, 13985, 14915, 15875, 16865, 17885, 18935, 20015, 21125, 22265, 23435, 24635, 25865
OFFSET
0,1
FORMULA
G.f. 5*(25-32*x+13*x^2) / (1-x)^3 . - R. J. Mathar, Apr 03 2012
a(n) = 3*a(n-1) -3*a(n-2) +a(n-3). - Vincenzo Librandi, Jul 07 2012
MATHEMATICA
CoefficientList[Series[5*(25-32*x+13*x^2)/(1-x)^3, {x, 0, 50}], x] (* Vincenzo Librandi, Jul 07 2012 *)
LinearRecurrence[{3, -3, 1}, {125, 215, 335}, 40] (* Harvey P. Dale, Mar 30 2018 *)
PROG
(Magma) [((n+5)^3 - n^3): n in [0..50]]; // Vincenzo Librandi, Jul 07 2012
(PARI) a(n)=(n+5)^3-n^3 \\ Charles R Greathouse IV, Jun 17 2017
CROSSREFS
Sequence in context: A251125 A252065 A252058 * A029782 A043351 A023724
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
G.f.: adapted to the offset 0 and added 125 by Vincenzo Librandi, Jul 07 2012
STATUS
approved