A013828 a(n) = 3^(5*n + 3).
27, 6561, 1594323, 387420489, 94143178827, 22876792454961, 5559060566555523, 1350851717672992089, 328256967394537077627, 79766443076872509863361, 19383245667680019896796723, 4710128697246244834921603689
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..200
- Tanya Khovanova, Recursive Sequences
- Index entries for linear recurrences with constant coefficients, signature (243).
Programs
-
Magma
[3^(5*n+3): n in [0..15]]; // Vincenzo Librandi, Jul 07 2011
-
Mathematica
3^(5*Range[0,20]+3) (* or *) NestList[243#&,27,20] (* Harvey P. Dale, Jun 07 2016 *)