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.

A375935 Denominator of rational number tan(2^(n-1)*arctan(1/A024810(n))).

Original entry on oeis.org

1, 3, 119, 72697201, 466125047039779152001, 1298332088620573402611989909424448036756809624806401
Offset: 1

Views

Author

Sanjar Abrarov, Sep 03 2024

Keywords

Comments

r(n) = tan(2^(n-1)*arctan(1/A024810(n))) is always a rational number such that its limit lim_{n->oo} r(n)=1.

Crossrefs

Cf. A024810, A374723 (numerators).

Programs

  • Mathematica
    a[n_] := Module[{}, z[n] = (Floor[2^(n + 1)/\[Pi]] + I)^2^(n - 1); Denominator[Im[z[n]]/Re[z[n]]]];
    Print[a[1], " ", a[2], " ", a[3], " ", a[4], " ", a[5], " ", a[6]];

Formula

a(n) = denominator(tan(2^(n-1)*arctan(1/A024810(n)))).