login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A067652 2 plus 3, twice 3, 2 to the power of 3, etc. 1
5, 6, 8, 16, 65536 (list; graph; refs; listen; history; internal format)
OFFSET

0,1

COMMENTS

a(5) is very large, the number of digits of the number of digits of the number of digits etc. iterated thousands of times is still large.

FORMULA

f(3, n) where f(a, 0) = 2+a, f(0, 1) = 0, f(0, n) = 1 for n > 1, f(a, n) = f(f(a-1, n), n-1) for a>0 and n > 0

PROG

(Haskell) f a 0 = 2 + a / f 0 1 = 0 / f 0 n = 1 / f a n = f (f (a-1) n) (n-1)

CROSSREFS

Sequence in context: A105057 A058336 A110461 * A191212 A129318 A054378

Adjacent sequences:  A067649 A067650 A067651 * A067653 A067654 A067655

KEYWORD

nonn

AUTHOR

Ashley Yakeley (ashley(AT)yakeley.org), Feb 03 2002

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 18:57 EST 2012. Contains 205848 sequences.