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”).

A017594
a(n) = (12*n + 6)^2.
1
36, 324, 900, 1764, 2916, 4356, 6084, 8100, 10404, 12996, 15876, 19044, 22500, 26244, 30276, 34596, 39204, 44100, 49284, 54756, 60516, 66564, 72900, 79524, 86436, 93636, 101124, 108900, 116964
OFFSET
0,1
FORMULA
a(n) = a(n-1) + 288*n, n >= 1. - Vincenzo Librandi, Mar 19 2011
G.f.: ( -36 - 216*x - 36*x^2 ) / (x-1)^3. - R. J. Mathar, Mar 20 2011
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3); a(0)=36, a(1)=324, a(2)=900. - Harvey P. Dale, Jun 04 2012
MATHEMATICA
(12*Range[0, 30]+6)^2 (* or *) LinearRecurrence[{3, -3, 1}, {36, 324, 900}, 30] (* Harvey P. Dale, Jun 04 2012 *)
PROG
(PARI) a(n)=(12*n+6)^2 \\ Charles R Greathouse IV, Jun 17 2017
CROSSREFS
Sequence in context: A045786 A237128 A171586 * A014800 A213124 A067473
KEYWORD
nonn,easy
STATUS
approved