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.

A280091 Pierce Expansion of tanh(1).

This page as a plain text file.
%I A280091 #11 Feb 16 2025 08:33:38
%S A280091 1,4,21,38,117,7135,7809,1614095,3624914,8425892,16789093,18206374,
%T A280091 20026429,106066483,297533015,329807820,393798971,762907505,
%U A280091 98220075842,124475838767,132042717951,252079930415,308550332741,1938650338119,10430003444835,12126839108751
%N A280091 Pierce Expansion of tanh(1).
%H A280091 G. C. Greubel, <a href="/A280091/b280091.txt">Table of n, a(n) for n = 1..1000</a>
%H A280091 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/PierceExpansion.html">Pierce Expansion</a>
%H A280091 Wikipedia, <a href="http://en.wikipedia.org/wiki/Engel_expansion">Engel Expansion</a>
%t A280091 PierceExp[A_, n_] := Join[Array[1 &, Floor[A]], First@Transpose@ NestList[{Floor[1/Expand[1 - #[[1]] #[[2]]]], Expand[1 - #[[1]] #[[2]]]} &, {Floor[1/(A - Floor[A])], A - Floor[A]}, n - 1]]; PierceExp[N[Tanh[1] , 7!], 50]
%Y A280091 Cf. A073744 (tanh(1)).
%K A280091 nonn
%O A280091 1,2
%A A280091 _G. C. Greubel_, Dec 25 2016