cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

User: Hendrik Ballhausen

Hendrik Ballhausen's wiki page.

Hendrik Ballhausen has authored 1 sequences.

A383236 The least number of applications of Ackermann-Péter functions to reach n, starting from 0.

Original entry on oeis.org

1, 2, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 5, 6, 7, 8, 8, 9, 9, 10, 9, 10, 10, 11, 10, 11, 11, 12, 6, 7, 8, 9, 10, 11, 11, 12, 11, 12, 12, 13, 12, 13, 13, 14, 12, 13, 13, 14, 13, 14, 14, 15, 13, 14, 14, 15, 14, 15, 15, 16, 7, 8, 9, 10
Offset: 1

Author

Hendrik Ballhausen, Apr 20 2025

Keywords

Comments

The Ackermann-Péter function is A(k,m) = A143796(k,m).
n >= 1 is reached by finding some n = A(k,m) with k and m each either 0 or further nested application(s) of A.
This sequence is slow-growing.

Examples

			For n=65533, n = A(5,0) = A(A(2,1),0) = A(A(A(0,1),A(0,0)),0) = A(A(A(0,A(0,0)),A(0,0)),0) which is a(65533) = 5 applications of A, and this is the fewest possible.
		

Crossrefs

Cf. A143796 (Ackermann-Péter function).
Cf. A368423 (with Wainer hierarchy).

Formula

a(n) = min_{k,m: A(k,m)=n} a(k) + a(m) + 1