login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A174339 a(n) = 109*n^2. 1
0, 109, 436, 981, 1744, 2725, 3924, 5341, 6976, 8829, 10900, 13189, 15696, 18421, 21364, 24525, 27904, 31501, 35316, 39349, 43600, 48069, 52756, 57661, 62784, 68125, 73684, 79461, 85456, 91669, 98100, 104749, 111616, 118701, 126004, 133525 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
From Vincenzo Librandi, Feb 25 2012: (Start)
G.f.: 109*x*(1+x)/(1-x)^3.
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3).
a(n) = (55n)^2 - (54n)^2 = (10n)^2 + (3n)^2. (End) [G.f. corrected by Georg Fischer, May 11 2019]
MATHEMATICA
CoefficientList[Series[109*x*(x+1)/(1-x)^3, {x, 0, 33}], x]
109*Range[0, 40]^2 (* or *) LinearRecurrence[{3, -3, 1}, {0, 109, 436}, 40] (* Harvey P. Dale, May 18 2012 *)
PROG
(Magma) [109*n^2: n in [0..50]]; /* or */ I:=[0, 109, 436]; [n le 3 select I[n] else 3*Self(n-1)-3*Self(n-2)+1*Self(n-3): n in [1..40]]; // Vincenzo Librandi, Feb 25 2012
(PARI) a(n)=109*n^2 \\ Charles R Greathouse IV, Jun 17 2017
CROSSREFS
Sequence in context: A139644 A360490 A270249 * A142640 A126856 A142915
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Mar 16 2010
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 12:43 EDT 2024. Contains 371940 sequences. (Running on oeis4.)