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.

A361669 a(n) = floor of sinh(sinh(sinh(...(1)...))) with n iterations.

Original entry on oeis.org

1, 1, 1, 2, 3, 22, 3355531547
Offset: 0

Views

Author

Sylvia Zevi Abrams, Mar 20 2023

Keywords

Comments

a(7) = ~2.67*10^1457288834.
sinh(x) = (e^x - e^-x)/2 is dominated by e^x as x tends to infinity, meaning that the sequence grows tetrationally.

Examples

			a(0) = 1,
a(1) = floor(sinh(1)) = floor(1.175...) = 1,
a(2) = floor(sinh(sinh(1))) = floor(1.465...) = 1,
a(3) = floor(sinh(sinh(sinh(1)))) = floor(2.048...) = 2,
a(4) = floor(sinh(sinh(sinh(sinh(1))))) = floor(3.812...) = 3,
a(5) = floor(sinh(sinh(sinh(sinh(sinh(1)))))) = floor(22.627...) = 22,
a(6) = floor(sinh(sinh(sinh(sinh(sinh(sinh(1))))))) = 3355531547.
		

Crossrefs

Programs

  • Maple
    a:= n-> floor(evalf((sinh@@n)(1), 45)):
    seq(a(n), n=0..6);  # Alois P. Heinz, Mar 20 2023
  • Mathematica
    Table[Floor[Nest[Sinh[n],1,n]],{n,0,7}]