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!)
A342167 a(n) = U(n, (n+2)/2) where U(n, x) is a Chebyshev polynomial of the 2nd kind. 4
1, 3, 15, 115, 1189, 15456, 242047, 4435929, 93149001, 2205405829, 58130412911, 1688353631328, 53577891882061, 1844491975179855, 68470281953483775, 2726406212682669391, 115921586524134874897, 5241862216131004082160, 251197634537351883217999 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..n} n^(n-k) * binomial(2*n+1-k,k) = Sum_{k=0..n} n^k * binomial(n+1+k,2*k+1).
a(n) ~ exp(2) * n^n. - Vaclav Kotesovec, May 06 2021
MATHEMATICA
Table[ChebyshevU[n, (n + 2)/2], {n, 0, 18}] (* Amiram Eldar, Apr 27 2021 *)
PROG
(PARI) a(n) = polchebyshev(n, 2, (n+2)/2);
(PARI) a(n) = sum(k=0, n, n^(n-k)*binomial(2*n+1-k, k));
(PARI) a(n) = sum(k=0, n, n^k*binomial(n+1+k, 2*k+1));
CROSSREFS
Sequence in context: A346224 A082163 A331122 * A346272 A190629 A341647
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 03 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 April 18 10:28 EDT 2024. Contains 371779 sequences. (Running on oeis4.)