login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A022286
a(n) = n*(29*n - 1)/2.
2
0, 14, 57, 129, 230, 360, 519, 707, 924, 1170, 1445, 1749, 2082, 2444, 2835, 3255, 3704, 4182, 4689, 5225, 5790, 6384, 7007, 7659, 8340, 9050, 9789, 10557, 11354, 12180, 13035, 13919, 14832, 15774, 16745
OFFSET
0,2
FORMULA
a(n) = 29*n + a(n-1) - 15 for n>0, a(0)=0. - Vincenzo Librandi, Aug 04 2010
G.f.: x*(14 + 15*x)/(1 - x)^3. - R. J. Mathar, Aug 04 2016
a(n) = A000217(15*n-1) - A000217(14*n-1). - Bruno Berselli, Oct 14 2016
E.g.f.: (x/2)*(29*x + 28)*exp(x). - G. C. Greubel, Aug 24 2017
MATHEMATICA
Table[n (29 n - 1)/2, {n, 0, 40}] (* Bruno Berselli, Oct 14 2016 *)
PROG
(PARI) a(n)=n*(29*n-1)/2 \\ Charles R Greathouse IV, Jun 17 2017
CROSSREFS
Cf. similar sequences listed in A022288.
Sequence in context: A202242 A041374 A070741 * A005915 A211069 A212675
KEYWORD
nonn,easy
STATUS
approved