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

A198959
a(1) = 2, a(n+1) = a(n)^2 - n.
0
2, 3, 7, 46, 2112, 4460539, 19896408170515, 395867058087736049315365218, 156710727679038987453730700439845485538142584724187516
OFFSET
1,1
COMMENTS
The next term -- a(10) -- has 107 digits. - Harvey P. Dale, Jun 22 2022
MATHEMATICA
RecurrenceTable[{a[1]==2, a[n+1]==a[n]^2-n}, a, {n, 10}] (* Harvey P. Dale, Jun 22 2022 *)
PROG
(PARI) vector(10, k, t=if(k==1, 2, t^2-(k-1)))
CROSSREFS
Cf. A086051.
Sequence in context: A086542 A349893 A058181 * A000231 A090593 A030090
KEYWORD
nonn,easy
AUTHOR
STATUS
approved