OFFSET
0,1
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 (14641).
FORMULA
a(n) = 14641*a(n-1). - Harvey P. Dale, May 26 2016
G.f.: 1331/(1 - 14641x). - Indranil Ghosh, Apr 09 2017
MAPLE
MATHEMATICA
11^(4*Range[0, 10]+3) (* or *) NestList[14641#&, 1331, 10] (* Harvey P. Dale, May 26 2016 *)
CoefficientList[Series[1331/(1- 14641x), {x, 0, 10}], x] (* Indranil Ghosh, Apr 09 2017 *)
PROG
(Magma) [11^(4*n+3): n in [0..10]]; // Vincenzo Librandi, Jun 28 2011
(PARI) a(n) = 11^(4*n + 3) \\ Indranil Ghosh, Apr 09 2017
(Python) def a(n): return 11**(4*n + 3) # Indranil Ghosh, Apr 09 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved