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!)
A342206 a(n) = T(n,n+2) where T(n,x) is a Chebyshev polynomial of the first kind. 3
1, 3, 31, 485, 10081, 262087, 8193151, 299537289, 12545596801, 592479412811, 31154649926687, 1805486216133613, 114342125644787041, 7857107443850071695, 582268591681887560191, 46292552162781456490001, 3930448770533424343942657 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = cos(n*arccos(n+2)).
a(n) = n * Sum_{k=0..n} (2*n+2)^k * binomial(n+k,2*k)/(n+k) for n > 0.
a(n) ~ exp(2) * 2^(n-1) * n^n. - Vaclav Kotesovec, Mar 12 2024
MATHEMATICA
Table[ChebyshevT[n, n + 2], {n, 0, 16}] (* Amiram Eldar, Mar 05 2021 *)
PROG
(PARI) a(n) = polchebyshev(n, 1, n+2);
(PARI) a(n) = round(cos(n*acos(n+2)));
(PARI) a(n) = if(n==0, 1, n*sum(k=0, n, (2*n+2)^k*binomial(n+k, 2*k)/(n+k)));
CROSSREFS
Sequence in context: A142999 A212917 A223993 * A346313 A143637 A327227
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 05 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 23 11:07 EDT 2024. Contains 371905 sequences. (Running on oeis4.)