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”).

A175981
a(1) = 1, for n >= 2: a(n) = a(n-1)^(n-1) - 1.
0
1, 0, -1, -2, 15, 759374, 191749544167774320464809980317709375
OFFSET
1,4
COMMENTS
a(8) has 247 digits.
a(9) has 1976 digits. - Harvey P. Dale, Feb 11 2024
EXAMPLE
For n = 5: a(5) = (-2)^(5-1) - 1 = 15.
MATHEMATICA
nxt[{n_, a_}]:={n+1, a^n-1}; NestList[nxt, {1, 1}, 7][[;; , 2]] (* Harvey P. Dale, Feb 11 2024 *)
CROSSREFS
Sequence in context: A135085 A290042 A080911 * A056072 A294195 A175982
KEYWORD
sign
AUTHOR
Jaroslav Krizek, Nov 03 2010
STATUS
approved