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!)
A323118 a(n) = U_{n}(n) where U_{n}(x) is a Chebyshev polynomial of the second kind. 14
1, 2, 15, 204, 3905, 96030, 2883167, 102213944, 4178507265, 193501094490, 10011386405999, 572335117886532, 35827847605137601, 2437406399741075126, 179059769134174484415, 14127079203550978667760, 1191321539697176278429697, 106935795565608726499866930 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..floor(n/2)} (n^2-1)^k*n^(n-2*k) * binomial(n+1,2*k+1).
a(n) ~ 2^n * n^n. - Vaclav Kotesovec, Jan 05 2019
a(n) = Sum_{k=0..n} (2*n-2)^(n-k) * binomial(2*n+1-k,k) = Sum_{k=0..n} (2*n-2)^k * binomial(n+1+k,2*k+1). - Seiichi Manyama, Mar 03 2021
MATHEMATICA
Table[ChebyshevU[n, n], {n, 0, 20}] (* Vaclav Kotesovec, Jan 05 2019 *)
PROG
(PARI) a(n) = polchebyshev(n, 2, n);
(PARI) a(n) = sum(k=0, n\2, (n^2-1)^k*n^(n-2*k)*binomial(n+1, 2*k+1));
(PARI) a(n) = sum(k=0, n, (2*n-2)^k*binomial(n+1+k, 2*k+1)); \\ Seiichi Manyama, Mar 03 2021
CROSSREFS
Main diagonal of A323182.
Sequence in context: A351920 A319466 A020557 * A184361 A351501 A124558
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jan 05 2019
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 April 23 10:29 EDT 2024. Contains 371905 sequences. (Running on oeis4.)