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.

Showing 1-1 of 1 results.

A356585 Number of decimal digits in the n-th Gosper hyperfactorial of n (A330716).

Original entry on oeis.org

1, 1, 2, 16, 198, 2927, 50060, 979361, 21645853, 534381060, 14590180163, 436814197446, 14235563000269, 501817445873045, 19029286646922723, 772532087068933899, 33434018751249535666, 1536767964161539414904, 74769012084248550773909
Offset: 0

Views

Author

Greg Huber, Aug 13 2022

Keywords

Comments

The 0th Gosper hyperfactorial is the usual factorial function.

Examples

			a(0)=1 since the 0th Gosper hyperfactorial (0!) has one decimal digit.
a(3)=16 since the 3rd Gosper hyperfactorial of 3 is 1952152956156672.
		

Crossrefs

Programs

  • Mathematica
    Floor[Table[1+Sum[Log10[k]*(k^n), {k, 1, n}], {n, 1, 18}]]
  • PARI
    a(n) = floor(sum(k=1, n, log(k)*k^n/log(10))) + 1; \\ Michel Marcus, Sep 27 2022

Formula

a(n) = A055642(A330716(n)).
Showing 1-1 of 1 results.