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.

A362004 Initial digit of the decimal expansion of the tetration 2^^n (in Don Knuth's up-arrow notation).

Original entry on oeis.org

1, 2, 4, 1, 6, 2, 2
Offset: 0

Views

Author

Marco RipĂ , Apr 02 2023

Keywords

Comments

The most significant digit of the base-10 representation of 2^(2^(2^...)) n times is given by floor(2^^n/10^(len(2^^n)-1)), where len(2^^n) indicates the number of digits of the argument.
Although it is known that 2^^6 starts with the digit 2 (see A241291), a(7) is not currently known (for details, see Googology link, section "First digits in tetration").

Examples

			a(4) = 6, since 2^^4 = 65536.
		

Crossrefs

Formula

a(n) = floor(2^^n/10^floor(log(2^^n))).