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!)
A342168 a(n) = U(n, (n+3)/2) where U(n, x) is a Chebyshev polynomial of the 2nd kind. 3
1, 4, 24, 204, 2255, 30744, 499121, 9409960, 202176360, 4878316860, 130651068911, 3846719565780, 123517560398401, 4296240885694576, 160935647131239840, 6460088606857290384, 276655979838719058119, 12591439417867717440180, 606947064800948702246681 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..n} (n+1)^(n-k) * binomial(2*n+1-k,k) = Sum_{k=0..n} (n+1)^k * binomial(n+1+k,2*k+1).
a(n) ~ exp(3) * n^n. - Vaclav Kotesovec, May 06 2021
MATHEMATICA
Table[ChebyshevU[n, (n + 3)/2], {n, 0, 18}] (* Amiram Eldar, Apr 27 2021 *)
PROG
(PARI) a(n) = polchebyshev(n, 2, (n+3)/2);
(PARI) a(n) = sum(k=0, n, (n+1)^(n-k)*binomial(2*n+1-k, k));
(PARI) a(n) = sum(k=0, n, (n+1)^k*binomial(n+1+k, 2*k+1));
CROSSREFS
Sequence in context: A089946 A343094 A012244 * A240429 A240297 A050388
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 May 2 23:14 EDT 2024. Contains 372203 sequences. (Running on oeis4.)