A244633 a(n) = 26*n^2.
0, 26, 104, 234, 416, 650, 936, 1274, 1664, 2106, 2600, 3146, 3744, 4394, 5096, 5850, 6656, 7514, 8424, 9386, 10400, 11466, 12584, 13754, 14976, 16250, 17576, 18954, 20384, 21866, 23400, 24986, 26624, 28314, 30056, 31850, 33696, 35594, 37544, 39546, 41600, 43706
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..1000
- Index entries for linear recurrences with constant coefficients, signature (3,-3,1).
Crossrefs
Programs
-
Magma
[26*n^2: n in [0..40]];
-
Maple
A244633:=n->26*n^2: seq(A244633(n), n=0..50); # Wesley Ivan Hurt, Jul 04 2014
-
Mathematica
Table[26 n^2, {n, 0, 40}] 26 Range[0, 50]^2 (* Wesley Ivan Hurt, Jul 04 2014 *)
-
PARI
a(n)=26*n^2 \\ Charles R Greathouse IV, Jun 17 2017
Formula
G.f.: 26*x*(1 + x)/(1 - x)^3. [corrected by Bruno Berselli, Jul 03 2014]
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3) for n > 2.
From Elmo R. Oliveira, Dec 02 2024: (Start)
E.g.f.: 26*x*(1 + x)*exp(x).
Comments