A244634 a(n) = 27*n^2.
0, 27, 108, 243, 432, 675, 972, 1323, 1728, 2187, 2700, 3267, 3888, 4563, 5292, 6075, 6912, 7803, 8748, 9747, 10800, 11907, 13068, 14283, 15552, 16875, 18252, 19683, 21168, 22707, 24300, 25947, 27648, 29403, 31212, 33075, 34992, 36963, 38988, 41067, 43200, 45387
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).
Programs
-
Magma
[27*n^2: n in [0..40]];
-
Mathematica
Table[27 n^2, {n, 0, 40}]
-
PARI
a(n)=27*n^2 \\ Charles R Greathouse IV, Jun 17 2017
Formula
G.f.: 27*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 01 2024: (Start)
E.g.f.: 27*x*(1 + x)*exp(x).
a(n) = n*A305548(n). (End)
Comments