OFFSET
0,2
LINKS
Harvey P. Dale, Table of n, a(n) for n = 0..960
Index entries for linear recurrences with constant coefficients, signature (12, -11).
FORMULA
a(n) = 11^n+a(n-1) (with a(0)=0). - Vincenzo Librandi, Nov 13 2010
MAPLE
a:=n-> add(11^j, j=1..n): seq(a(n), n=0..12); # Zerinvary Lajos, Oct 03 2007
MATHEMATICA
NestList[11#+11&, 0, 20] (* or *) LinearRecurrence[{12, -11}, {0, 11}, 20] (* Harvey P. Dale, Dec 02 2023 *)
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Alexandre Wajnberg, Apr 25 2005
EXTENSIONS
Corrected by T. D. Noe, Nov 07 2006
STATUS
approved