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

A175980
a(1) = 1, for n >= 2: a(n) = a(n-1)^n + 1.
1
1, 2, 9, 6562, 12166933384727052833
OFFSET
1,2
COMMENTS
a(6) has 115 digits.
EXAMPLE
For n = 4: a(4) = 9^4 + 1 = 6562.
MATHEMATICA
RecurrenceTable[{a[1]==1, a[n]==a[n-1]^n+1}, a, {n, 6}] (* Harvey P. Dale, Nov 02 2019 *)
CROSSREFS
Sequence in context: A067039 A208214 A280256 * A296654 A027734 A328201
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Nov 03 2010
STATUS
approved