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!)
A059232 a(1)= 1, a(n) = (a(n-1)^a(n-1)) + n. 0
1, 3, 30, 205891132094649000000000000000000000000000004 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The next term is too large to include.
LINKS
EXAMPLE
a(2) = 1^1 + 2 = 3.
a(3) = 3^3 + 3 = 27 + 3 = 30.
MATHEMATICA
RecurrenceTable[{a[1]==1, a[n]==a[n-1]^a[n-1]+n}, a, {n, 4}] (* Harvey P. Dale, Dec 27 2012 *)
PROG
(PARI) { for (n = 1, 4, a=if (n==1, 1, a^a + n); write("b059232.txt", n, " ", a); ) } \\ Harry J. Smith, Jun 25 2009
CROSSREFS
Sequence in context: A065594 A155731 A145385 * A068698 A053300 A322777
KEYWORD
nonn
AUTHOR
Fabian Rothelius, Jan 20 2001
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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)