A143761 a(n+1) = a(n)^2 - n*a(n) + n^2, a(1) = 1.
1, 1, 3, 9, 61, 3441, 11819871, 139709267717593, 19518679486184955909459972969, 380978848884417414427615903969045678210740619589070918321
Offset: 1
Keywords
Links
- Index entries for sequences of form a(n+1)=a(n)^2 + ... [From _Reinhard Zumkeller_, Sep 11 2008]
Programs
-
Mathematica
RecurrenceTable[{a[n+1] == a[n]^2 - n*a[n] + n^2, a[1] == 1}, a, {n, 1, 10}] (* Vaclav Kotesovec, Dec 18 2014 *) nxt[{n_,a_}]:={n+1,a^2-a(n+1)+(n+1)^2}; Join[{1},NestList[nxt,{1,1},10][[All,2]]] (* Harvey P. Dale, Oct 15 2017 *)
Formula
a(n) ~ c^(2^n), where c = 1.1356768837971801294990742257077941319336784846128736022759470343698650014... . - Vaclav Kotesovec, Dec 18 2014
Comments