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.

A349076 a(n) = U(n, 3*n), where U(n, x) is the Chebyshev polynomial of the second kind.

Original entry on oeis.org

1, 6, 143, 5796, 330049, 24192090, 2168392031, 229755926568, 28093745899009, 3893604149949966, 603151411514453999, 103272803655639197580, 19367259480582106560193, 3947962681769909551857186, 869179946261864224288867775, 205535515565731164929726435280
Offset: 0

Views

Author

Vaclav Kotesovec, Nov 07 2021

Keywords

Comments

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

Crossrefs

Programs

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

Formula

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