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.

A349070 a(n) = T(3*n, n), where T(n, x) is the Chebyshev polynomial of the first kind.

Original entry on oeis.org

1, 1, 1351, 3880899, 28355806081, 429364731169925, 11731978174095849671, 525735133485219615486151, 36049049892983023583045990401, 3588952618789973294871796462342089, 497937643558017209960022199517744044999, 93156956377055671178035977181412016527566091
Offset: 0

Views

Author

Vaclav Kotesovec, Nov 07 2021

Keywords

Comments

In general, for k>=1, T(k*n, n) ~ 2^(k*n - 1) * n^(k*n).

Crossrefs

Programs

  • Mathematica
    Table[ChebyshevT[3*n, n], {n, 0, 13}]
  • PARI
    a(n) = polchebyshev(3*n, 1, n); \\ Michel Marcus, Nov 07 2021

Formula

a(n) = cosh(3*n*arccosh(n)).
a(n) = ((n + sqrt(n^2-1))^(3*n) + (n - sqrt(n^2-1))^(3*n))/2.
a(n) ~ 2^(3*n-1) * n^(3*n).