The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A349074 a(n) = U(3*n, n), where U(n, x) is the Chebyshev polynomial of the second kind. 5
1, 4, 2911, 7997214, 57641556673, 867583274883920, 23630375698358890319, 1056918444955456528983706, 72383076947075470731692782081, 7200266529428094485775774835670652, 998383804974887102441600687728515247999, 186701261436825568741051032736345268517903734 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
In general, for k>=1, U(k*n, n) ~ 2^(k*n) * n^(k*n).
LINKS
Eric Weisstein's World of Mathematics, Chebyshev Polynomial of the Second Kind.
FORMULA
For n>1, a(n) = ((n + sqrt(n^2-1))^(3*n+1) - (n - sqrt(n^2-1))^(3*n+1)) / (2*sqrt(n^2-1)).
a(n) ~ 2^(3*n) * n^(3*n).
MATHEMATICA
Table[ChebyshevU[3*n, n], {n, 0, 13}]
PROG
(PARI) a(n) = polchebyshev(3*n, 2, n); \\ Michel Marcus, Nov 07 2021
(Python)
from sympy import chebyshevu
def A349074(n): return chebyshevu(3*n, n) # Chai Wah Wu, Nov 08 2023
CROSSREFS
Sequence in context: A066837 A275683 A297008 * A347605 A306728 A172953
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Nov 07 2021
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 4 19:15 EDT 2024. Contains 373102 sequences. (Running on oeis4.)