OFFSET
0,5
COMMENTS
The supplied Mathematica and PARI code corresponds to an initial value a(-1)=b(-1)=1 from which a(0)=b(0) is computed to be equal to 1.
The next term is approximately
-1.642155991293887705947531213655414816023738489781202992764677529*10^3948835
and is too large to display here. - Robert G. Wilson v, Nov 27 2010
MATHEMATICA
a=1; lst={}; Do[a=a^2-n^a; AppendTo[lst, Floor[a]], {n, 0, 7}]; lst
PROG
(PARI) a=1; for(n=0, 7, print1(floor(a=a^2-n^a)", ")) \\ - R. Gerbicz, Nov 27 2010
CROSSREFS
KEYWORD
sign
AUTHOR
Vladimir Joseph Stephan Orlovsky, Dec 17 2008
EXTENSIONS
Definition clarified by R. J. Mathar, R. Gerbicz and M. F. Hasler, Nov 27 2010
STATUS
approved