login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A152836 a(0)=-1; a(n)=n^a(n-1)-a(n-1)^n. 5
-1, 2, 0, 1, 3, -118 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Sequence is finite because followup terms are fractions. - R. J. Mathar, Jun 19 2021
LINKS
MATHEMATICA
lst={}; a=1; Do[a=n^a-a^n; AppendTo[lst, a], {n, 0, 5}]; lst
nxt[{n_, a_}]:={n+1, (n+1)^a-a^(n+1)}; NestList[nxt, {0, -1}, 5][[All, 2]] (* Harvey P. Dale, Jun 06 2022 *)
CROSSREFS
Sequence in context: A216701 A278326 A018843 * A152837 A182036 A334173
KEYWORD
sign,fini,less
AUTHOR
EXTENSIONS
Definition corrected by N. J. A. Sloane, Jan 11 2009
Offset corrected. R. J. Mathar, Jun 19 2021
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 13:41 EDT 2024. Contains 371914 sequences. (Running on oeis4.)