login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A015499
a(0)=1, a(1)=11, a(n) = sum_{k=0}^{k=n-1} 11^k a(k).
1
1, 11, 122, 14884, 19825488, 290284795296, 46750946852011392, 82822200907043005634304, 1613970474494103062192651148288, 345968906493565448004393168763031894016, 815776584570266460972904878145357549417415811072
OFFSET
0,2
FORMULA
a(n) = (11^(n-2) + 1) * a(n-1). - Vincenzo Librandi, Nov 11 2012
PROG
(Magma) I:=[1, 11, 122]; [n le 3 select I[n] else (11^(n-2)+1)*Self(n-1): n in [1..15]]; // Vincenzo Librandi, Nov 11 2012
CROSSREFS
Sequence in context: A334000 A041222 A097708 * A039438 A258843 A015593
KEYWORD
nonn,easy
STATUS
approved